summary refs log tree commit diff
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2022-12-26 04:08:53 +0100
committerTheArcaneBrony <myrainbowdash949@gmail.com>2022-12-26 04:08:53 +0100
commit2fcfff1ed8172332eeb1155230229d6288580e0e (patch)
tree137f59f01f9509b1ce5b4ebb8cc1795f489b0b2c
parentCleanup, add postgres base (diff)
downloadRory-Open-Architecture-2fcfff1ed8172332eeb1155230229d6288580e0e.tar.xz
Grub array
Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com>
-rw-r--r--modules/base-server.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/base-server.nix b/modules/base-server.nix
index 028296b..41e58a4 100644
--- a/modules/base-server.nix
+++ b/modules/base-server.nix
@@ -13,7 +13,7 @@
       grub = {
         enable = true;
         version = 2;
-        device = "/dev/sda"; # nodev for EFI only
+        devices = [ "/dev/sda" ]; # nodev for EFI only
         # EFI
         efiSupport = false;
         efiInstallAsRemovable = false;
@@ -51,7 +51,6 @@
   security.sudo.wheelNeedsPassword = false;
   nixpkgs.config.allowUnfree = true;
 
-
   system.stateVersion = "22.11"; # DO NOT EDIT!
 }