nixos-config/hosts/prophet/filesystems/default.nix
2025-06-06 14:54:14 -04:00

15 lines
259 B
Nix

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