NixOS and Home Manager config

feat: systemd initrd

nel.pet cbdd23fa 8acd72f9

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