summaryrefslogtreecommitdiff
path: root/users/gkleen.nix
blob: 1e8b62c9f9d1536c523a39bdb0a4315d4b2c2925 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  users.extraUsers.gkleen = {
    name = "gkleen";
    description = "Gregor Kleen";
    extraGroups = [ "wheel" "wlan" "lp" "dialout" ];
    group = "users";
    uid = 1000;
    createHome = true;
    home = "/home/gkleen";
    shell = "/run/current-system/sw/bin/zsh";
    isNormalUser = true;
    openssh.authorizedKeys.keyFiles = [
      keys/gkleen-skadhi.pub
    ];
    hashedPassword = "$6$fJbC4zdY$fOdHMAfIZldfE1oYcLN0WflJpD1J4tXjCP21QfjP6R4nVcbYI.bb1AjZftcJtpHvBA/tC5pJXYoaxTRFvwxvA/";
  };
}