diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-08-18 00:32:39 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-08-19 23:35:10 +0200 |
commit | 2fbae642bcb7a084d51ad0758842f5cfd345b0ee (patch) | |
tree | 4731e3504146d885f6a31c2de46dd6a186fddcc2 /hosts/configuration.nix | |
parent | Update (diff) | |
download | nixos-config-2fbae642bcb7a084d51ad0758842f5cfd345b0ee.tar.gz nixos-config-2fbae642bcb7a084d51ad0758842f5cfd345b0ee.tar.bz2 nixos-config-2fbae642bcb7a084d51ad0758842f5cfd345b0ee.zip |
Luna: Add /boot encryption
Diffstat (limited to 'hosts/configuration.nix')
-rw-r--r-- | hosts/configuration.nix | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix index 2254651..ebcafeb 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -10,13 +10,17 @@ boot = { loader = { - systemd-boot = { - enable = true; - editor = false; - }; efi = { - efiSysMountPoint = "/boot"; canTouchEfiVariables = true; + efiSysMountPoint = "/boot/efi"; + }; + grub = { + enable = true; + version = 2; + efiSupport = true; + device = "nodev"; + enableCryptodisk = true; + splashImage = null; }; timeout = 0; }; |