nixos/duplicity: remove absolute path literals

This commit is contained in:
Ameer Taweel
2026-04-25 01:41:56 +03:00
parent fc63774ac4
commit 0d8b4bd0c5
+2 -2
View File
@@ -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