diff options
Diffstat (limited to 'system/bootloader')
| -rw-r--r-- | system/bootloader/default.nix | 2 | ||||
| -rw-r--r-- | system/bootloader/grub.nix | 18 |
2 files changed, 10 insertions, 10 deletions
diff --git a/system/bootloader/default.nix b/system/bootloader/default.nix index a498906..29fa61d 100644 --- a/system/bootloader/default.nix +++ b/system/bootloader/default.nix @@ -1,7 +1,7 @@ _: { imports = [ ./grub.nix - ./limine.nix + ./limine.nix ./plymouth.nix ]; } diff --git a/system/bootloader/grub.nix b/system/bootloader/grub.nix index 7f1b31a..167e779 100644 --- a/system/bootloader/grub.nix +++ b/system/bootloader/grub.nix @@ -7,14 +7,14 @@ cfg = config.bootloader.grub; in { config = mkIf cfg.enable { - boot.loader = { - efi.canTouchEfiVariables = true; - grub = { - enable = true; - efiSupport = true; - device = "nodev"; - splashImage = config.theme.wallpaper; - }; - }; + boot.loader = { + efi.canTouchEfiVariables = true; + grub = { + enable = true; + efiSupport = true; + device = "nodev"; + splashImage = config.theme.wallpaper; + }; + }; }; } |