summaryrefslogtreecommitdiff
path: root/sif
diff options
context:
space:
mode:
Diffstat (limited to 'sif')
-rw-r--r--sif/boot.nix18
1 files changed, 8 insertions, 10 deletions
diff --git a/sif/boot.nix b/sif/boot.nix
index 26b2a0e7..7fffd7a2 100644
--- a/sif/boot.nix
+++ b/sif/boot.nix
@@ -2,14 +2,14 @@
2 2
3{ 3{
4 boot.initrd = { 4 boot.initrd = {
5 initrd = { 5 luks.devices = [
6 luks.devices = [ 6 { name = "nvm0"; device = "/dev/disk/by-uuid/fe641e81-0812-4181-a5f6-382ebba509bb"; }
7 { name = "nvm0"; device = "/dev/disk/by-uuid/fe641e81-0812-4181-a5f6-382ebba509bb"; } 7 { name = "nvm1"; device = "/dev/disk/by-uuid/43df1ba8-1728-4193-8855-920a82d4494a"; }
8 { name = "nvm1"; device = "/dev/disk/by-uuid/43df1ba8-1728-4193-8855-920a82d4494a"; } 8 ];
9 ]; 9
10 kernelModules = [ "dm-snapshot" ]; 10 kernelParams = [ "intel_pstate=no_hwp" "quiet" ];
11 availableKernelModules = [ "fbcon" "xhci_pci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ]; 11 kernelModules = [ "dm-snapshot" ];
12 }; 12 availableKernelModules = [ "fbcon" "xhci_pci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
13 13
14 # Use the systemd-boot EFI boot loader. 14 # Use the systemd-boot EFI boot loader.
15 loader = { 15 loader = {
@@ -19,7 +19,5 @@
19 }; 19 };
20 20
21 plymouth.enable = true; 21 plymouth.enable = true;
22
23 kernelParams = [ "intel_pstate=no_hwp" "quiet" ];
24 }; 22 };
25} 23}