diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-08-22 12:18:49 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-08-22 12:18:49 +0200 |
commit | 3344721d06ea1954b3e4b31337909aa40cec3048 (patch) | |
tree | 95374757bcb1678a5372fc2499829c423c3bbdf2 /hosts | |
parent | Packages: adl: Add perl dependency (diff) | |
download | nixos-config-3344721d06ea1954b3e4b31337909aa40cec3048.tar.gz nixos-config-3344721d06ea1954b3e4b31337909aa40cec3048.tar.bz2 nixos-config-3344721d06ea1954b3e4b31337909aa40cec3048.zip |
Grub: Install as removable
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/configuration.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix index fce9583..7c6a25e 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -15,13 +15,13 @@ boot = { loader = { efi = { - canTouchEfiVariables = true; efiSysMountPoint = "/boot/efi"; }; grub = { enable = true; version = 2; efiSupport = true; + efiInstallAsRemovable = true; device = "nodev"; enableCryptodisk = true; splashImage = null; |