summary refs log tree commit diff stats
path: root/sys/users/default.nix
blob: 89603bb01224659678f7c3183c9a7cb5a5f15fe2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{pkgs, ...}: {
  users = {
    mutableUsers = false;
    users.sils = {
      isNormalUser = true;
      home = "/home/sils";
      shell = pkgs.zsh;
      initialHashedPassword = "$y$j9T$r4578Hy9jZHmUH9uSr9OI.$SuR2anRq7EJ1gUJ6vi9qYmZrhLP.o3O5643IG6r5Ap/";
      extraGroups = ["wheel" "networkmanager"];
    };
    users.cnnr = {
      isNormalUser = true;
      home = "/home/cnnr";
      shell = pkgs.zsh;
      initialHashedPassword = "$y$j9T$NFz0d2coUOvl.hL3YRwEY0$8btvXUoWGWwo11ksdt8eIFUljCkpUe0YliEy7l0odU1";
    };
  };
  services.xserver.displayManager.autoLogin = {
    enable = true;
    user = "sils";
  };
  programs.zsh.enable = true;
}