diff options
Diffstat (limited to 'modules/users/chris.nix')
-rw-r--r-- | modules/users/chris.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/modules/users/chris.nix b/modules/users/chris.nix new file mode 100644 index 0000000..86acee5 --- /dev/null +++ b/modules/users/chris.nix @@ -0,0 +1,18 @@ +{ config, pkgs, ... }: + +{ + + users.users.chris = { + isNormalUser = true; + extraGroups = [ "wheel" ]; + packages = with pkgs; [ + nano + nodejs-slim + ]; + #initialPassword = "password"; + openssh.authorizedKeys.keys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMd9U0+wKjBG3Q9Qg249xJY+ybYeRV9/VMPjuwKvFBEI" + ]; + }; +} + |