add missing semi colon

This commit is contained in:
Andreas Zweili 2021-11-26 17:58:01 +01:00
parent c850518276
commit 9d8f9ed6a7
1 changed files with 6 additions and 5 deletions

View File

@ -10,22 +10,23 @@
boot.extraModulePackages = [ ];
boot.kernelParams = [
"mem_sleep_default=deep"
]
];
boot.initrd.luks.devices."cryptlvm".device = "/dev/sda2";
fileSystems."/" =
{ device = "/dev/disk/by-label/nixos";
{
device = "/dev/disk/by-label/nixos";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-label/BOOT";
{
device = "/dev/disk/by-label/BOOT";
fsType = "vfat";
};
swapDevices =
[ { device = "/dev/disk/by-label/swap"; }
];
[{ device = "/dev/disk/by-label/swap"; }];
}