summary refs log tree commit diff stats
path: root/users.nix
blob: 870abb7af3c034bfc10d73e373c1ea52a4dad946 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, pkgs, ... }:

{
   users.mutableUsers = false;
   users.users.sils = {
     isNormalUser = true;
     home = "/home/sils";
     shell = pkgs.zsh;
     initialHashedPassword = "$y$j9T$r4578Hy9jZHmUH9uSr9OI.$SuR2anRq7EJ1gUJ6vi9qYmZrhLP.o3O5643IG6r5Ap/";
     extraGroups = [ "wheel" "networkmanager"]; 
   };

}