NixOS and Home Manager config

feat: systemd initrd

nel.pet cbdd23fa 8acd72f9

verified
+6
+1
modules/nixos/system/boot/default.nix
··· 1 1 { 2 2 imports = [ 3 + ./initrd.nix 3 4 ./loader.nix 4 5 ]; 5 6 }
+5
modules/nixos/system/boot/initrd.nix
··· 1 + { 2 + # Systemd initrd is experimental but generally functional for most systems. 3 + # Cyclamen imposes the use of the systemd based initrd. 4 + boot.initrd.systemd.enable = true; 5 + }