diff --git a/configuration.nix b/configuration.nix index 5de3191..db57086 100644 --- a/configuration.nix +++ b/configuration.nix @@ -3,15 +3,8 @@ ./hardware-configuration.nix ./disk-config.nix ]; - boot.loader = { - efi.canTouchEfiVariables = true; - systemd-boot.enable = true; - # Hide the OS choice for bootloaders. - # It's still possible to open the bootloader list by pressing any key - # It will just not appear on screen unless a key is pressed - timeout = 0; - }; boot = { + initrd.systemd.enable = true; plymouth = { enable = true; theme = "rings"; @@ -35,6 +28,15 @@ "rd.udev.log_level=3" "udev.log_priority=3" ]; + + loader = { + efi.canTouchEfiVariables = true; + systemd-boot.enable = true; + # Hide the OS choice for bootloaders. + # It's still possible to open the bootloader list by pressing any key + # It will just not appear on screen unless a key is pressed + timeout = 0; + }; }; services.openssh.enable = true;