summaryrefslogtreecommitdiffstats
path: root/hosts
diff options
context:
space:
mode:
authorSkullheadx <admonty1@protonmail.com>2026-06-03 22:15:00 -0400
committerSkullheadx <admonty1@protonmail.com>2026-06-03 22:15:00 -0400
commit1734e563a05ae45107d66695390bea0bb0d464fd (patch)
treefba533cce79d7e8946867029f6da63aae92f30f9 /hosts
parentnfs (diff)
downloadnixos-1734e563a05ae45107d66695390bea0bb0d464fd.tar.gz
nixos-1734e563a05ae45107d66695390bea0bb0d464fd.tar.bz2
nixos-1734e563a05ae45107d66695390bea0bb0d464fd.zip
nfs client side
Diffstat (limited to '')
-rw-r--r--hosts/nepsis/configuration.nix12
1 files changed, 12 insertions, 0 deletions
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 = [ ... ];