From ed0d9ef01ab81828a9738d989bc0e2deb5b94f24 Mon Sep 17 00:00:00 2001 From: sohalt Date: Wed, 24 Nov 2021 18:00:28 +0100 Subject: [PATCH] update option descriptions --- modules/age.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/age.nix b/modules/age.nix index f884d3f..e3822b8 100644 --- a/modules/age.nix +++ b/modules/age.nix @@ -73,21 +73,21 @@ let type = types.str; default = "0400"; description = '' - Permissions mode of the in octal. + Permissions mode of the decrypted secret in a format understood by chmod. ''; }; owner = mkOption { type = types.str; default = "0"; description = '' - User of the file. + User of the decrypted secret. ''; }; group = mkOption { type = types.str; default = users.${config.owner}.group or "0"; description = '' - Group of the file. + Group of the decrypted secret. ''; }; symlink = mkEnableOption "symlinking secrets to their destination" // { default = true; };