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

15 lines
257 B
Nix

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