diff options
author | Emile <git@emile.space> | 2024-09-29 00:05:20 +0200 |
---|---|---|
committer | Emile <git@emile.space> | 2024-09-29 00:05:20 +0200 |
commit | 535ce422a38610b96cd8655300698eb6af041610 (patch) | |
tree | 21d0d8e42affe477078f8b858702fa6230713b01 | |
parent | 2ccdc54c99df595ef95fb68cbdc52d8860c0acba (diff) |
formatting
-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"; |