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

This commit is contained in:
Sandro 2026-04-25 00:09:43 +00:00 committed by GitHub
commit 62f27251c9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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