nixos-config/hosts/computer-mo/system-settings/sys.set-filesystems.nix
2024-08-10 14:15:06 +02:00

19 lines
337 B
Nix

{ ... }:
{
fileSystems."/" =
{ device = "/dev/disk/by-partlabel/root";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-partlabel/EFI";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};
swapDevices = [ {
device = "/var/lib/swapfile";
size = 16*1024;
}];
}