From f2230c6e701be10ca0b0a545c0a791f45fcc3de3 Mon Sep 17 00:00:00 2001 From: Felix Albrigtsen Date: Thu, 16 Jan 2025 21:50:01 +0100 Subject: [PATCH] challenger: re-add backup nfs mount --- hosts/challenger/filesystems.nix | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/hosts/challenger/filesystems.nix b/hosts/challenger/filesystems.nix index f55a887..27e4e84 100644 --- a/hosts/challenger/filesystems.nix +++ b/hosts/challenger/filesystems.nix @@ -17,16 +17,16 @@ interval = "Wed *-*-8..14 00:00:00"; }; - # fileSystems = { - # "/mnt/feal-syn1/backup" = { - # device = "feal-syn1.home.feal.no:/volume2/backup"; - # fsType = "nfs"; - # options = [ - # "defaults" - # "noatime" - # "rw" - # "nfsvers=3" - # ]; - # }; - # }; + fileSystems = { + "/mnt/feal-syn1/backup" = { + device = "feal-syn1.home.feal.no:/volume2/backup"; + fsType = "nfs"; + options = [ + "defaults" + "noatime" + "rw" + "nfsvers=3" + ]; + }; + }; }