mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
nixos/duplicity: remove absolute path literals (#513211)
This commit is contained in:
commit
62f27251c9
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue