From 0d8b4bd0c5e4d9d04f7e60e5cb80d3e9faf24f9d Mon Sep 17 00:00:00 2001 From: Ameer Taweel Date: Sat, 25 Apr 2026 01:41:56 +0300 Subject: [PATCH] nixos/duplicity: remove absolute path literals --- nixos/modules/services/backup/duplicity.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/backup/duplicity.nix b/nixos/modules/services/backup/duplicity.nix index fa0b00db6b2c..b4d9c94748d5 100644 --- a/nixos/modules/services/backup/duplicity.nix +++ b/nixos/modules/services/backup/duplicity.nix @@ -47,7 +47,7 @@ in includeFileList = lib.mkOption { type = lib.types.nullOr lib.types.path; default = null; - example = /path/to/fileList.txt; + example = "/path/to/fileList.txt"; description = '' File containing newline-separated list of paths to include into the backups. See the FILE SELECTION section in {manpage}`duplicity(1)` for @@ -58,7 +58,7 @@ in excludeFileList = lib.mkOption { type = lib.types.nullOr lib.types.path; default = null; - example = /path/to/fileList.txt; + example = "/path/to/fileList.txt"; description = '' File containing newline-separated list of paths to exclude into the backups. See the FILE SELECTION section in {manpage}`duplicity(1)` for