nixos: Switch to systemd initrd
All checks were successful
CI / Check, build and cache Nix flake (push) Successful in 17m17s

This commit is contained in:
2023-12-04 23:00:25 +00:00
parent c4e6896a0c
commit 373fb45831
4 changed files with 19 additions and 6 deletions

View File

@@ -94,6 +94,7 @@ in
"net.ipv6.route.max_size" = mkDefault 16384;
};
};
loader = {
efi = {
efiSysMountPoint = mkDefault "/boot";
@@ -111,6 +112,14 @@ in
memtest86.enable = mkDefault true;
};
};
initrd = {
systemd = {
enable = mkDefault true;
emergencyAccess = mkDefault true;
};
services.lvm.enable = mkDefault true;
};
};
environment.systemPackages = with pkgs; mkMerge [