diff options
-rw-r--r-- | nix/hosts/corrino/configuration.nix | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/nix/hosts/corrino/configuration.nix b/nix/hosts/corrino/configuration.nix index f4157b4..8fdf6ab 100644 --- a/nix/hosts/corrino/configuration.nix +++ b/nix/hosts/corrino/configuration.nix @@ -1,4 +1,9 @@ -{ config, pkgs, ... }: +{ + config, + pkgs, + lib, + ... +}: let # keys = import ../../users/keys.nix @@ -71,7 +76,7 @@ in loader.systemd-boot.enable = false; loader.grub = { - enable = true; + enable = lib.mkForce true; efiSupport = false; enableCryptodisk = true; device = "nodev"; |