summaryrefslogtreecommitdiff
path: root/system/bootloader/grub.nix
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2026-05-26 19:37:49 -0400
committerFreya Murphy <freya@freyacat.org>2026-05-26 19:51:09 -0400
commit37b014982cad97b0813d04e310cc8df5ec1ad5b6 (patch)
tree186f5614a4132686820e56870dd06f4d2cb24c85 /system/bootloader/grub.nix
parentadd plymouth as a splash screen (diff)
downloaddotfiles-nix-37b014982cad97b0813d04e310cc8df5ec1ad5b6.tar.gz
dotfiles-nix-37b014982cad97b0813d04e310cc8df5ec1ad5b6.tar.bz2
dotfiles-nix-37b014982cad97b0813d04e310cc8df5ec1ad5b6.zip
more refactoring
Diffstat (limited to 'system/bootloader/grub.nix')
-rw-r--r--system/bootloader/grub.nix18
1 files changed, 9 insertions, 9 deletions
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;
+ };
+ };
};
}