Reformat Nix files

This commit is contained in:
Paul-Henri Froidmont 2021-07-16 19:13:51 +02:00
parent f39ddc8078
commit fdc4148540
Signed by: phfroidmont
GPG key ID: BE948AFD7E7873BE
9 changed files with 87 additions and 82 deletions

View file

@ -5,7 +5,8 @@
{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
[
(modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usb_storage" "sd_mod" "sdhci_pci" ];
@ -14,19 +15,20 @@
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/a8abad9b-5615-4887-8431-3d80b78d073e";
{
device = "/dev/disk/by-uuid/a8abad9b-5615-4887-8431-3d80b78d073e";
fsType = "ext4";
};
boot.initrd.luks.devices."crypted".device = "/dev/disk/by-uuid/1e900b2e-daea-4558-b18f-3d3a5843de61";
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/077C-758A";
{
device = "/dev/disk/by-uuid/077C-758A";
fsType = "vfat";
};
swapDevices =
[ { device = "/dev/disk/by-uuid/bb8fa9ef-9b8f-413d-913a-6c891649a954"; }
];
[{ device = "/dev/disk/by-uuid/bb8fa9ef-9b8f-413d-913a-6c891649a954"; }];
}