AquaticOS/modules/hosts/aquaticTest/filesystems.nix

16 lines
No EOL
354 B
Nix

{ ... }:
{
flake.modules.nixos.aquaticTest = {
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/6e97a051-2612-49cc-8fbf-218e415b1711";
fsType = "ext4";
};
"/boot" = {
device = "/dev/disk/by-uuid/A5EB-D31E";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
};
};
}