From 1734e563a05ae45107d66695390bea0bb0d464fd Mon Sep 17 00:00:00 2001 From: Skullheadx Date: Wed, 3 Jun 2026 22:15:00 -0400 Subject: nfs client side --- hosts/nepsis/configuration.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'hosts/nepsis') diff --git a/hosts/nepsis/configuration.nix b/hosts/nepsis/configuration.nix index 587303f..383b058 100644 --- a/hosts/nepsis/configuration.nix +++ b/hosts/nepsis/configuration.nix @@ -84,6 +84,7 @@ wireguard-tools nethogs iftop + nfs-utils ]; programs.git = { @@ -135,6 +136,17 @@ enable = true; }; + fileSystems."/mnt/data" = { + device = "192.168.1.120:/"; + fsType = "nfs4"; + options = [ + "x-systemd.automount" + "noauto" + "x-systemd.idle-timeout=600" + "rw" + ]; + }; + # Open ports in the firewall. # networking.firewall.allowedTCPPorts = [ ... ]; # networking.firewall.allowedUDPPorts = [ ... ]; -- cgit v1.3.1