-
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'nix-community:main' into rocketpool-1.13.7
- Loading branch information
Showing
29 changed files
with
314 additions
and
317 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ lib: | |
with lib; { | ||
passwordFile = mkOption { | ||
type = types.str; | ||
description = lib.mdDoc '' | ||
description = '' | ||
Read the repository password from a file. | ||
''; | ||
example = "/etc/nixos/restic-password"; | ||
|
@@ -12,7 +12,7 @@ with lib; { | |
environmentFile = mkOption { | ||
type = with types; nullOr str; | ||
default = null; | ||
description = lib.mdDoc '' | ||
description = '' | ||
file containing the credentials to access the repository, in the | ||
format of an EnvironmentFile as described by systemd.exec(5) | ||
''; | ||
|
@@ -21,7 +21,7 @@ with lib; { | |
rcloneOptions = mkOption { | ||
type = with types; nullOr (attrsOf (oneOf [str bool])); | ||
default = null; | ||
description = lib.mdDoc '' | ||
description = '' | ||
Options to pass to rclone to control its behavior. | ||
See <https://rclone.org/docs/#options> for | ||
available options. When specifying option names, strip the | ||
|
@@ -38,7 +38,7 @@ with lib; { | |
rcloneConfig = mkOption { | ||
type = with types; nullOr (attrsOf (oneOf [str bool])); | ||
default = null; | ||
description = lib.mdDoc '' | ||
description = '' | ||
Configuration for the rclone remote being used for backup. | ||
See the remote's specific options under rclone's docs at | ||
<https://rclone.org/docs/>. When specifying | ||
|
@@ -62,7 +62,7 @@ with lib; { | |
rcloneConfigFile = mkOption { | ||
type = with types; nullOr path; | ||
default = null; | ||
description = lib.mdDoc '' | ||
description = '' | ||
Path to the file containing rclone configuration. This file | ||
must contain configuration for the remote specified in this backup | ||
set and also must be readable by root. Options set in | ||
|
@@ -74,7 +74,7 @@ with lib; { | |
repository = mkOption { | ||
type = with types; nullOr str; | ||
default = null; | ||
description = lib.mdDoc '' | ||
description = '' | ||
repository to backup to. | ||
''; | ||
example = "sftp:[email protected]:/backups/my-bucket"; | ||
|
@@ -83,7 +83,7 @@ with lib; { | |
repositoryFile = mkOption { | ||
type = with types; nullOr path; | ||
default = null; | ||
description = lib.mdDoc '' | ||
description = '' | ||
Path to the file containing the repository location to backup to. | ||
''; | ||
}; | ||
|
@@ -95,7 +95,7 @@ with lib; { | |
"keystore" | ||
"**/nodekey" | ||
]; | ||
description = lib.mdDoc '' | ||
description = '' | ||
Patterns to exclude when backing up. See | ||
https://restic.readthedocs.io/en/latest/040_backup.html#excluding-files for | ||
details on syntax. | ||
|
@@ -110,7 +110,7 @@ with lib; { | |
extraOptions = mkOption { | ||
type = types.listOf types.str; | ||
default = []; | ||
description = lib.mdDoc '' | ||
description = '' | ||
Extra extended options to be passed to the restic --option flag. | ||
''; | ||
example = [ | ||
|
Oops, something went wrong.