From 21f421847bc3b39a2362be64d59415cf2ddee8be Mon Sep 17 00:00:00 2001 From: Kevin Kandlbinder Date: Thu, 25 May 2023 15:48:06 +0200 Subject: [PATCH] Fix configuration mistake --- nixos/modules/restic.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nixos/modules/restic.nix b/nixos/modules/restic.nix index 69250a5..ef02957 100644 --- a/nixos/modules/restic.nix +++ b/nixos/modules/restic.nix @@ -19,16 +19,16 @@ environment.etc = { "restic/backup-exclude.list" = { - source = "../../restic/backup-exclude.list"; + source = ../../restic/backup-exclude.list; }; "restic/backup-iexclude.list" = { - source = "../../restic/backup-iexclude.list"; + source = ../../restic/backup-iexclude.list; }; "restic/backup.list" = { - source = "../../restic/backup.list"; + source = ../../restic/backup.list; }; "restic/backup.sh" = { - source = "../../restic/backup.sh"; + source = ../../restic/backup.sh; }; };