citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

commit be24961ec97d3cd1fe65f50de2558dce3c506fcb
parent 4026b93902005c2dbf4f7fb5eb77dee15f946c4b
Author: William Casarin <jb55@jb55.com>
Date:   Wed,  4 Nov 2020 11:27:33 -0800

quiver: fix luks config

Diffstat:
Mnix-config/machines/quiver/hardware-configuration.nix | 18+++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/nix-config/machines/quiver/hardware-configuration.nix b/nix-config/machines/quiver/hardware-configuration.nix @@ -14,17 +14,17 @@ boot.extraModulePackages = [ ]; boot.loader.grub.enable = true; - boot.loader.grub.device = "nodev"; - boot.loader.grub.efiSupport = true; + boot.loader.grub.device = "nodev"; + boot.loader.grub.efiSupport = true; boot.loader.efi.canTouchEfiVariables = true; - boot.initrd.luks.devices = [ - { name = "root"; - device = "/dev/disk/by-uuid/ddb70a55-f123-461d-a4c1-a42a393b61fa"; - preLVM = false; - allowDiscards = true; - } - ]; + boot.initrd.luks.devices = { + root = { + device = "/dev/disk/by-uuid/ddb70a55-f123-461d-a4c1-a42a393b61fa"; + preLVM = false; + allowDiscards = true; + }; + }; fileSystems."/" = { device = "/dev/disk/by-uuid/a6670d72-9bdf-4c62-b397-d35c8c1356ef";