From cb7105e54b30b27c96a5a3e868033540d9cd3f68 Mon Sep 17 00:00:00 2001 From: CherryKitten Date: Wed, 15 May 2024 13:22:58 +0200 Subject: [PATCH] mount homeserver share on laptop --- hosts/dinictis/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/dinictis/default.nix b/hosts/dinictis/default.nix index 987d9d6..e5bd7d4 100644 --- a/hosts/dinictis/default.nix +++ b/hosts/dinictis/default.nix @@ -23,6 +23,12 @@ } ]; + fileSystems."/mnt/Media" = { + device = "192.168.0.3:/mnt/user/Media"; + fsType = "nfs"; + options = [ "x-systemd.automount" "noauto" "x-systemd.idle-timeout=600" "noatime" ]; # disconnects after 10 minutes (i.e. 600 seconds) + }; + system.stateVersion = "23.11"; # Did you read the comment? # Famedly compliance foo - stolen from evelyn :3