summaryrefslogtreecommitdiff
path: root/hosts/lia/modules/users.nix
blob: 13617ff859234e8bdaf0f54953edaaa796ef3377 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ pkgs, ... }: {
  users.users."rohit" = {
    isNormalUser = true;
    extraGroups = [ "wheel" ];

    packages = with pkgs; [ git htop ];
    openssh.authorizedKeys.keys =
      [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOZcWF1zVyxsCdZ/j+h+RlHZlyhgY2Bky03847bxFNSH rohit@victus" ];
  };
}