diff options
Diffstat (limited to 'os/common/modules/user.nix')
-rw-r--r-- | os/common/modules/user.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/os/common/modules/user.nix b/os/common/modules/user.nix new file mode 100644 index 0000000..d6c341b --- /dev/null +++ b/os/common/modules/user.nix @@ -0,0 +1,16 @@ +{ config, ... }: let + user = config.global.userdata.name; + email = config.global.userdata.email; +in { + users.users.${user} = { + uid = 1000; + isNormalUser = true; + description = email; + extraGroups = [ "wheel" ]; + + openssh.authorizedKeys.keys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAcCendbKbeoc7hYEEcBt9wwtSXrJUgJ2SuYARO0zPAX sinan@veu" + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIL8LnyOuPmtKRqAZeHueNN4kfYvpRQVwCivSTq+SZvDU sinan@cez" + ]; + }; +} |