Alejandro Angulo
370f46be16
Stopped using a ZFS pool for my boot partition. Fixed this error in during boot (using grub): > error: compression algorithm inherit not supported.
13 lines
428 B
Nix
13 lines
428 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
boot.supportedFilesystems = ["zfs"];
|
|
networking.hostId = "f8616592";
|
|
boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
|
|
boot.loader.efi.canTouchEfiVariables = false;
|
|
boot.loader.systemd-boot.enable = true;
|
|
users.users.root.initialHashedPassword = "$6$3Ps2Vmff.gUBkiCv$FCeCQjDvNTdWynQU81qtCXFHQht86w4unWNalUgkcyq7lkkI2klzRyTK3dZiQUjIrn8qPKtwJcY9SNdyE8v1L/";
|
|
}
|