summaryrefslogtreecommitdiff
path: root/users/tkleen.nix
blob: debe2138a3be251b08641e04be1702da7f563483 (plain)
1
2
3
4
5
6
7
8
9
{ userName, ... }:
{
  users.users.${userName} = {
    description = "Tatjana Kleen";
    extraGroups = ["xmpp"];
    hashedPassword = "$6$rounds=500000$K/MclfEm/LEplrSt$jKakA8dwOggI7ZB5ZwnCHVjvTGw6/VJZGVIlQGmuLoDvz24.pCnrl29xeUGItFhy6vpbjeb9GoG76RwdgI33H/";
    isNormalUser = true;
  };
}