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

17 lines
306 B
Nix

{ ... }:
{
fileSystems = {
"/persist/storage" = {
device = "/dev/disk/by-uuid/edd3e293-1aff-4fc0-96fa-4e17d6cccfca";
fsType = "btrfs";
options = [
"nofail"
"nosuid"
];
};
# Network mounts
"midas".enable = true;
"prophet".enable = true;
};
}