nixos-config/hosts/prophet/filesystems/default.nix

17 lines
304 B
Nix

{ ... }:
{
fileSystems = {
"/persist/storage" = {
device = "/dev/disk/by-uuid/ef465845-cc56-4db5-9260-8ae515eb025e";
fsType = "btrfs";
options = [
"nofail"
"nosuid"
];
};
# Network mounts
"kitty".enable = true;
"midas".enable = true;
};
}