nixos/duplicity: remove absolute path literals (#513211)

This commit is contained in:
Sandro
2026-04-25 00:09:43 +00:00
committed by GitHub
+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