diff options
author | tv <tv@krebsco.de> | 2020-08-04 20:28:04 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2020-08-05 11:01:30 +0200 |
commit | b5b90b598430cfa876639d76dbbdc8d826ccb5c0 (patch) | |
tree | a302c834b859111bd2061e2c52d9e91c052d2a98 /lib | |
parent | 087fff54f11d28c9a08849c70520ecf9030f4ce9 (diff) |
types.secret-file: add service option
Diffstat (limited to 'lib')
-rw-r--r-- | lib/types.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/types.nix b/lib/types.nix index 16ccb145e..82e184ba9 100644 --- a/lib/types.nix +++ b/lib/types.nix @@ -256,6 +256,10 @@ rec { type = str; default = "root"; }; + service = mkOption { + type = filename; + default = "secret.service"; + }; source-path = mkOption { type = str; default = toString <secrets> + "/${config.name}"; |