Make the two servers work together better and move things around

This commit is contained in:
Bun 2025-04-04 01:43:08 -04:00
parent dbecb3e57e
commit dad0e0deb4
5 changed files with 23 additions and 15 deletions

View file

@ -1,9 +1,16 @@
{ ... }:
{
fileSystems."/persist" = {
device = "/dev/disk/by-uuid/acf95700-8669-45c7-9a72-bf3215b3c325";
fsType = "btrfs";
neededForBoot = true;
options = [ "subvol=persist" "compress=zstd" "noatime" ];
fileSystems = {
"/persist" = {
device = "/dev/disk/by-uuid/acf95700-8669-45c7-9a72-bf3215b3c325";
fsType = "btrfs";
neededForBoot = true;
options = [ "subvol=persist" "compress=zstd" "noatime" ];
};
"/kitty" = {
device = "10.2.0.2:/storage/BunStore";
fsType = "nfs4";
options = [ "x-systemd.automount" "noauto" "soft" "_netdev" ];
};
};
}