Files
nix-fleet/modules/disks/singledisk/singledisk.nix
Mohamed Chrayed cba15588f8 singledisk changes
2026-03-03 13:33:59 +01:00

20 lines
387 B
Nix

{ ... }: {
flake.nixosModules.singledisk = {
fileSystems."/" = {
device = "/dev/disk/by-label/root";
fsType = "xfs";
};
fileSystems."/boot" = {
device = "/dev/disk/by-label/boot";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
swapDevices = [{
device = "/var/lib/swapfile";
size = 16 * 1024;
}];
};
}