nixos/fileSystems.nix
Greg Leyda beaf5202ca flakes
2022-07-09 11:27:58 -04:00

11 lines
170 B
Nix
Executable file

{
"/" =
{ device = "/dev/disk/by-label/nixos";
fsType = "ext4";
};
"/boot" =
{ device = "/dev/disk/by-label/BOOT";
fsType = "vfat";
};
}