diff --git a/hosts/kitty/default.nix b/hosts/kitty/default.nix index e5dbdd88..583950e4 100644 --- a/hosts/kitty/default.nix +++ b/hosts/kitty/default.nix @@ -27,4 +27,6 @@ server.enable = true; stateVersion = "24.11"; }; + + services.nfs.server.enable = true; } diff --git a/hosts/tower/filesystems/default.nix b/hosts/tower/filesystems/default.nix index 493e929b..8d118819 100644 --- a/hosts/tower/filesystems/default.nix +++ b/hosts/tower/filesystems/default.nix @@ -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" ]; + }; }; }