Merge pull request #141 from nix-community/joerg-ci

add comment for lvm raid
This commit is contained in:
mergify[bot] 2023-11-12 11:39:30 +00:00 committed by GitHub
commit b75f16f72f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -43,7 +43,12 @@
"xfs" "xfs"
]; ];
boot = { boot = {
kernelModules = [ "dm-raid" "zfs" ]; kernelModules = [
"zfs"
# we have to explicitly enable this, otherwise it is not loaded even when creating a raid:
# https://github.com/nix-community/nixos-anywhere/issues/249
"dm-raid"
];
extraModulePackages = [ extraModulePackages = [
config.boot.kernelPackages.zfs config.boot.kernelPackages.zfs
]; ];