Remove zfs from sd card image

This commit is contained in:
Sandro - 2023-01-04 01:26:55 +01:00
parent abccab1c47
commit a5b462d4ed
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 4 additions and 1 deletions

View File

@ -16,15 +16,18 @@
}; };
generic-extlinux-compatible.enable = lib.mkForce false; generic-extlinux-compatible.enable = lib.mkForce false;
}; };
# supportedFilesystems = lib.mkForce [ "vfat" "ext4" ]; # no zfs required
supportedFilesystems = lib.mkForce [ "vfat" "ext4" ];
tmpOnTmpfs = true; tmpOnTmpfs = true;
}; };
nixpkgs.config.packageOverrides = pkgs: { nixpkgs.config.packageOverrides = pkgs: {
makeModulesClosure = x: makeModulesClosure = x:
# prevent kernel install fail due to missing modules # prevent kernel install fail due to missing modules
pkgs.makeModulesClosure (x // { allowMissing = true; }); pkgs.makeModulesClosure (x // { allowMissing = true; });
}; };
sdImage = { sdImage = {
compressImage = false; compressImage = false;
imageBaseName = "schalter"; imageBaseName = "schalter";