24 lines
457 B
Nix
24 lines
457 B
Nix
{ ... }:
|
|
{
|
|
fileSystems = {
|
|
"/persist" = {
|
|
device = "/dev/disk/by-uuid/acf95700-8669-45c7-9a72-bf3215b3c325";
|
|
fsType = "btrfs";
|
|
neededForBoot = true;
|
|
options = [
|
|
"compress=zstd"
|
|
"noatime"
|
|
"subvol=persist"
|
|
];
|
|
};
|
|
"/kitty" = {
|
|
device = "11.0.0.2:/storage/bun";
|
|
fsType = "nfs4";
|
|
options = [
|
|
"noauto"
|
|
"soft"
|
|
"x-systemd.automount"
|
|
];
|
|
};
|
|
};
|
|
}
|