15 lines
257 B
Nix
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;
|
|
};
|
|
}
|