From 6802751fa966d49e8792433d5480ff8fe59cadcd Mon Sep 17 00:00:00 2001 From: Felix Albrigtsen Date: Mon, 27 Jan 2025 19:45:29 +0100 Subject: [PATCH] challenger: mount feal-syn1:/volume2/backup using systemd.automount --- hosts/challenger/filesystems.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/challenger/filesystems.nix b/hosts/challenger/filesystems.nix index 27e4e84..c72322d 100644 --- a/hosts/challenger/filesystems.nix +++ b/hosts/challenger/filesystems.nix @@ -19,13 +19,16 @@ fileSystems = { "/mnt/feal-syn1/backup" = { - device = "feal-syn1.home.feal.no:/volume2/backup"; + # device = "feal-syn1.home.feal.no:/volume2/backup"; + device = "192.168.10.162:/volume2/backup"; fsType = "nfs"; options = [ "defaults" "noatime" "rw" "nfsvers=3" + "x-systemd.automount" + "noauto" ]; }; };