diff options
author | sinanmohd <sinan@sinanmohd.com> | 2023-10-02 14:09:08 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2023-10-02 14:09:08 +0530 |
commit | 2224c03b0b962599742b280a467266543c7652f8 (patch) | |
tree | af384d49efb349fc3cdd496eef68b08179621d0c | |
parent | 01f27a737baad078fcec5ca9f03a4850e354ef36 (diff) |
modules/userdata: remove options.description
-rw-r--r-- | common.nix | 4 | ||||
-rw-r--r-- | modules/userdata.nix | 5 |
2 files changed, 2 insertions, 7 deletions
@@ -3,7 +3,7 @@ let user = config.userdata.user; groups = config.userdata.groups; - description = config.userdata.description; + description = config.userdata.email; pubKeys = config.userdata.pubKeys; host = config.networking.hostName; in @@ -36,7 +36,7 @@ in # users users.users.${user} = { - description = description; + inherit description; isNormalUser = true; extraGroups = [ "wheel" diff --git a/modules/userdata.nix b/modules/userdata.nix index 9873ded..67a5d2a 100644 --- a/modules/userdata.nix +++ b/modules/userdata.nix @@ -10,11 +10,6 @@ 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 = []; |