AquaticOS/modules/hosts/controlstation/filesystems.nix

23 lines
No EOL
489 B
Nix

{ ... }:
{
flake.modules.nixos.controlstation = {
fileSystems."/" = {
device = "/dev/disk/by-uuid/e1caedf6-3939-4966-a9a9-af730c70dd3b";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/E61F-4154";
fsType = "vfat";
options = [
"fmask=0077"
"dmask=0077"
];
};
fileSystems."/home/aqua/Games" = {
device = "/dev/disk/by-uuid/d4ec18c9-83ad-410a-94e3-33a849a730c3";
fsType = "ext4";
};
};
}