Litenet-Nix-Infra/modules/users/chris.nix
2024-07-19 03:31:44 +00:00

19 lines
346 B
Nix
Executable file

{ 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"
];
};
}