From d5c0a5ff4dc3936443d6bd410c6e5f71c24f3be2 Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Sat, 3 Feb 2024 12:58:47 +0530 Subject: boot: move bootloader implementation to hardware-configuration --- hosts/cez/hardware-configuration.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'hosts/cez') diff --git a/hosts/cez/hardware-configuration.nix b/hosts/cez/hardware-configuration.nix index a1107c1..19313e5 100644 --- a/hosts/cez/hardware-configuration.nix +++ b/hosts/cez/hardware-configuration.nix @@ -4,6 +4,11 @@ imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; boot = { + loader = { + systemd-boot.enable = true; + efi.canTouchEfiVariables = true; + }; + kernelModules = [ "kvm-amd" ]; initrd = { availableKernelModules = [ @@ -15,7 +20,8 @@ "sdhci_pci" ]; - luks.devices."crypt".device = "/dev/disk/by-uuid/84acd784-caad-41a1-a2e4-39468d01fefd"; + luks.devices."crypt".device = + "/dev/disk/by-uuid/84acd784-caad-41a1-a2e4-39468d01fefd"; }; }; -- cgit v1.2.3