Add Kitty as a new NFS mount

This commit is contained in:
Bun 2025-04-04 00:54:42 -04:00
parent cb8cca6828
commit dbecb3e57e
2 changed files with 7 additions and 0 deletions

View file

@ -27,4 +27,6 @@
server.enable = true;
stateVersion = "24.11";
};
services.nfs.server.enable = true;
}

View file

@ -36,5 +36,10 @@
fsType = "nfs4";
options = [ "x-systemd.automount" "noauto" "soft" "_netdev" ];
};
"/home/${config.sysusers.main}/Kitty" = {
device = "10.2.0.2:/";
fsType = "nfs4";
options = [ "x-systemd.automount" "noauto" "soft" "_netdev" ];
};
};
}