summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorquentin@aristote.fr <quentin@aristote.fr>2025-06-08 12:03:05 +0200
committerquentin@aristote.fr <quentin@aristote.fr>2025-06-08 12:03:05 +0200
commit30b663574954af6b393e2d15ad3c228fec23822c (patch)
tree7133ab8687f38505c2d51bd061083a5cb3d6a6e0 /config
parent2d1f025579f90898bf649807e463767adc3d4d28 (diff)
enable nfs
Diffstat (limited to 'config')
-rw-r--r--config/hardware/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/config/hardware/default.nix b/config/hardware/default.nix
index 06555f7..1991008 100644
--- a/config/hardware/default.nix
+++ b/config/hardware/default.nix
@@ -44,4 +44,11 @@ in {
after = ["multi-user.target"];
};
};
+
+ boot.supportedFilesystems = ["nfs"];
+ fileSystems."/data" = {
+ device = "ds411.aristote.mesh:/volume2/hephaistos";
+ fsType = "nfs";
+ options = ["x-systemd.automount" "noauto" "x-systemd.idle-timeout=600"];
+ };
}