summary refs log tree commit diff
path: root/modules/users/chris.nix
blob: 9df69a8ab7e9f5a938e919d65dd58dbb74c34f93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ 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" ];
  };
}