diff options
-rw-r--r-- | hel/boot.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hel/boot.nix b/hel/boot.nix index af0dfe2d..c3acf746 100644 --- a/hel/boot.nix +++ b/hel/boot.nix | |||
@@ -5,12 +5,12 @@ | |||
5 | initrd.luks.devices = [ { name = "ssd"; device = "/dev/disk/by-uuid/9e9e430c-f9cd-418e-b66b-60f81ba9293b"; } | 5 | initrd.luks.devices = [ { name = "ssd"; device = "/dev/disk/by-uuid/9e9e430c-f9cd-418e-b66b-60f81ba9293b"; } |
6 | ]; | 6 | ]; |
7 | loader = { | 7 | loader = { |
8 | gummiboot.enable = true; | 8 | systemd-boot.enable = true; |
9 | efi.canTouchEfiVariables = true; | 9 | efi.canTouchEfiVariables = true; |
10 | }; | 10 | }; |
11 | 11 | ||
12 | tmpOnTmpfs = true; | 12 | tmpOnTmpfs = true; |
13 | 13 | ||
14 | extraKernelParams = ["intel_pstate=no_hwp"]; | 14 | kernelParams = ["intel_pstate=no_hwp"]; |
15 | }; | 15 | }; |
16 | } | 16 | } |