diff --git a/morph/grid/hro-cloud/storage003-config.nix b/morph/grid/hro-cloud/storage003-config.nix index 6893df50ce01642752eddfd8981f44a0f9471181..f5be748f2a41093e2cf9928d576fee12af72753c 100644 --- a/morph/grid/hro-cloud/storage003-config.nix +++ b/morph/grid/hro-cloud/storage003-config.nix @@ -6,5 +6,4 @@ "gateway" = "151.80.28.254"; "gatewayInterface" = "eno3"; "grubDeviceID" = "nvme-eui.e8238fa6bf530001001b448b463b77bf"; - "systemd-boot" = true; } diff --git a/nixos/modules/100tb.nix b/nixos/modules/100tb.nix index 6c86c8f28238b10349787e3aea5c2b4ae49aae2a..12bb4b35b4c24acd28bfb9a5909809e0f9a8fdd0 100644 --- a/nixos/modules/100tb.nix +++ b/nixos/modules/100tb.nix @@ -70,12 +70,6 @@ let description = "The ID of the disk on which to install grub."; default = "nodev"; }; - systemd-boot = lib.mkOption - { type = lib.types.bool; - default = false; - description = "Whether to enable the systemd-boot (formerly gummiboot) EFI boot manager"; - }; - }; in { # Here we actually define the module's options. They're what we said they @@ -111,7 +105,6 @@ in { { boot.loader.grub.enable = true; boot.loader.grub.version = 2; boot.loader.grub.device = if cfg.grubDeviceID == "nodev" then "nodev" else "/dev/disk/by-id/${cfg.grubDeviceID}"; - boot.loader.systemd-boot.enable = cfg.systemd-boot; boot.loader.timeout = 10; networking.firewall.enable = false;