summaryrefslogtreecommitdiff
path: root/hel/boot.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hel/boot.nix')
-rw-r--r--hel/boot.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/hel/boot.nix b/hel/boot.nix
index b7cc0429..41452166 100644
--- a/hel/boot.nix
+++ b/hel/boot.nix
@@ -2,8 +2,15 @@
2 2
3{ 3{
4 boot = { 4 boot = {
5 initrd.luks.devices = [ { name = "ssd"; device = "/dev/disk/by-uuid/9e9e430c-f9cd-418e-b66b-60f81ba9293b"; } 5 initrd = {
6 ]; 6 luks.devices = [ { name = "ssd"; device = "/dev/disk/by-uuid/9e9e430c-f9cd-418e-b66b-60f81ba9293b"; }
7 ];
8 availableKernelModules = [ "fbcon" "xhci_pci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
9 };
10
11 kernelModules = [ "kvm-intel" ];
12 extraModulePackages = [ ];
13
7 loader = { 14 loader = {
8 systemd-boot.enable = true; 15 systemd-boot.enable = true;
9 efi.canTouchEfiVariables = true; 16 efi.canTouchEfiVariables = true;