summary refs log tree commit diff stats
path: root/modules
diff options
context:
space:
mode:
authorAlan Pearce2017-09-09 13:54:24 +0200
committerAlan Pearce2017-09-09 13:56:42 +0200
commitbeeb65621be5ccecb06c5994696599a282530625 (patch)
tree85f6d49948eaa456b49ae079f2ed11894bcaac3c /modules
parenta6ecfec5e8401c10ab8bbddc39cd203b7c0eeac7 (diff)
downloadnixos-configuration-beeb65621be5ccecb06c5994696599a282530625.tar.lz
nixos-configuration-beeb65621be5ccecb06c5994696599a282530625.tar.zst
nixos-configuration-beeb65621be5ccecb06c5994696599a282530625.zip
Add grub2 module
Diffstat (limited to 'modules')
-rw-r--r--modules/grub2.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/grub2.nix b/modules/grub2.nix
new file mode 100644
index 0000000..6eaa8cc
--- /dev/null
+++ b/modules/grub2.nix
@@ -0,0 +1,12 @@
+{ config, pkgs, ... }:
+
+{ boot.loader = {
+    grub = {
+      enable = true;
+      version = 2;
+      device = "nodev";
+      efiSupport = true;
+    };
+    efi.canTouchEfiVariables = true;
+  };
+}