summaryrefslogtreecommitdiff
path: root/system/bootloader/grub.nix
diff options
context:
space:
mode:
Diffstat (limited to 'system/bootloader/grub.nix')
-rw-r--r--system/bootloader/grub.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/system/bootloader/grub.nix b/system/bootloader/grub.nix
new file mode 100644
index 0000000..167e779
--- /dev/null
+++ b/system/bootloader/grub.nix
@@ -0,0 +1,20 @@
+{
+ lib,
+ config,
+ ...
+}: let
+ inherit (lib) mkIf;
+ 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;
+ };
+ };
+ };
+}