diff options
author | sinanmohd <sinan@sinanmohd.com> | 2023-09-09 11:45:52 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2023-09-11 13:44:14 +0530 |
commit | 146026f7bd704aa80e09fedac08e47754f9ac2f4 (patch) | |
tree | d0bf90d69eae592cab13b07befde180a463144be /modules | |
parent | e72c86c26271ba88e8b5ea1db9baf1fdd2501945 (diff) |
hosts/kay/modules/www: init
Diffstat (limited to 'modules')
-rw-r--r-- | modules/userdata.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/userdata.nix b/modules/userdata.nix index 24088a9..9873ded 100644 --- a/modules/userdata.nix +++ b/modules/userdata.nix @@ -10,6 +10,11 @@ in default = "sinan"; description = mdDoc "Owner's username"; }; + description = mkOption { + type = types.str; + default = "sinanmohd"; + description = mdDoc "Owner's description"; + }; groups = mkOption { type = types.listOf types.str; default = []; @@ -20,6 +25,11 @@ in default = "sinanmohd.com"; description = mdDoc "Owner's domain"; }; + email = mkOption { + type = types.str; + default = "sinan@firemail.cc"; + description = mdDoc "Owner's email"; + }; pubKeys = mkOption { type = types.listOf types.str; description = mdDoc "Owner's public ssh keys"; |