move filesystems to modules
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
{
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-label/EFI";
|
||||
fsType = "vfat";
|
||||
options = [ "fmask=0077" "dmask=0077" ];
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-label/NixOS";
|
||||
fsType = "btrfs";
|
||||
options = [ "discard" ];
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
swapDevices = [{ device = "/dev/disk/by-label/Swap";
|
||||
options = [ "discard" "nofail" ];
|
||||
}];
|
||||
}
|
||||
Reference in New Issue
Block a user