summaryrefslogtreecommitdiff
path: root/sif/boot.nix
diff options
context:
space:
mode:
Diffstat (limited to 'sif/boot.nix')
-rw-r--r--sif/boot.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/sif/boot.nix b/sif/boot.nix
index dbe081c7..1a6155b3 100644
--- a/sif/boot.nix
+++ b/sif/boot.nix
@@ -3,10 +3,10 @@
3{ 3{
4 boot = { 4 boot = {
5 initrd = { 5 initrd = {
6 luks.devices = [ 6 luks.devices = {
7 { name = "nvm0"; device = "/dev/disk/by-uuid/fe641e81-0812-4181-a5f6-382ebba509bb"; } 7 nvm0.device = "/dev/disk/by-uuid/fe641e81-0812-4181-a5f6-382ebba509bb";
8 { name = "nvm1"; device = "/dev/disk/by-uuid/43df1ba8-1728-4193-8855-920a82d4494a"; } 8 nvm1.device = "/dev/disk/by-uuid/43df1ba8-1728-4193-8855-920a82d4494a";
9 ]; 9 };
10 availableKernelModules = [ "dm-snapshot" "dm-integrity" "dm-raid" "drbg" "authenc" "nvme" "fbcon" "xhci_pci" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ]; 10 availableKernelModules = [ "dm-snapshot" "dm-integrity" "dm-raid" "drbg" "authenc" "nvme" "fbcon" "xhci_pci" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
11 kernelModules = [ "dm-raid" ]; 11 kernelModules = [ "dm-raid" ];
12 }; 12 };