Merge pull request #77 from Sohalt/main

update option descriptions
This commit is contained in:
Ryan Mulligan 2021-11-24 14:43:10 -08:00 committed by GitHub
commit f85eea0e29
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -73,21 +73,21 @@ let
type = types.str; type = types.str;
default = "0400"; default = "0400";
description = '' description = ''
Permissions mode of the in octal. Permissions mode of the decrypted secret in a format understood by chmod.
''; '';
}; };
owner = mkOption { owner = mkOption {
type = types.str; type = types.str;
default = "0"; default = "0";
description = '' description = ''
User of the file. User of the decrypted secret.
''; '';
}; };
group = mkOption { group = mkOption {
type = types.str; type = types.str;
default = users.${config.owner}.group or "0"; default = users.${config.owner}.group or "0";
description = '' description = ''
Group of the file. Group of the decrypted secret.
''; '';
}; };
symlink = mkEnableOption "symlinking secrets to their destination" // { default = true; }; symlink = mkEnableOption "symlinking secrets to their destination" // { default = true; };