summary refs log tree commit diff stats
path: root/system/modules/hardware/grub2.nix
diff options
context:
space:
mode:
Diffstat (limited to 'system/modules/hardware/grub2.nix')
-rw-r--r--system/modules/hardware/grub2.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/system/modules/hardware/grub2.nix b/system/modules/hardware/grub2.nix
deleted file mode 100644
index 70e86e71..00000000
--- a/system/modules/hardware/grub2.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{ config, pkgs, ... }:
-
-{ boot.loader = {
-    grub = {
-      enable = true;
-      splashImage = null;
-      version = 2;
-      device = "nodev";
-      efiSupport = true;
-    };
-    efi.canTouchEfiVariables = true;
-  };
-}