From 5e32a0d063415a4505a9cec4701a1297c816683e Mon Sep 17 00:00:00 2001 From: notohh Date: Sun, 31 Dec 2023 13:02:54 -0500 Subject: [PATCH] tsuki: update restic mounting --- hosts/tsuki/hardware.nix | 4 ++-- hosts/tsuki/services/restic.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hosts/tsuki/hardware.nix b/hosts/tsuki/hardware.nix index 93357f9..394a2a8 100755 --- a/hosts/tsuki/hardware.nix +++ b/hosts/tsuki/hardware.nix @@ -33,8 +33,8 @@ fsType = "ext4"; }; - fileSystems."/nas" = { - device = "192.168.1.199:/mnt/Sutoreji/tsuki"; + fileSystems."/nas/restic" = { + device = "192.168.1.199:/mnt/Sutoreji/nix-restic-data/tsuki"; fsType = "nfs"; }; diff --git a/hosts/tsuki/services/restic.nix b/hosts/tsuki/services/restic.nix index 9ed37c6..35f2bf9 100644 --- a/hosts/tsuki/services/restic.nix +++ b/hosts/tsuki/services/restic.nix @@ -39,7 +39,7 @@ "--keep-monthly=5" ]; initialize = true; - repository = "/nas/home"; + repository = "/nas/restic"; passwordFile = config.sops.secrets.restic-tsuki.path; timerConfig = { OnCalendar = "daily";