Skip to content

Commit 0d8b4bd

Browse files
committed
nixos/duplicity: remove absolute path literals
1 parent fc63774 commit 0d8b4bd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

nixos/modules/services/backup/duplicity.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ in
4747
includeFileList = lib.mkOption {
4848
type = lib.types.nullOr lib.types.path;
4949
default = null;
50-
example = /path/to/fileList.txt;
50+
example = "/path/to/fileList.txt";
5151
description = ''
5252
File containing newline-separated list of paths to include into the
5353
backups. See the FILE SELECTION section in {manpage}`duplicity(1)` for
@@ -58,7 +58,7 @@ in
5858
excludeFileList = lib.mkOption {
5959
type = lib.types.nullOr lib.types.path;
6060
default = null;
61-
example = /path/to/fileList.txt;
61+
example = "/path/to/fileList.txt";
6262
description = ''
6363
File containing newline-separated list of paths to exclude into the
6464
backups. See the FILE SELECTION section in {manpage}`duplicity(1)` for

0 commit comments

Comments
 (0)