summary refs log tree commit diff stats
path: root/users.nix
blob: 1d8bc314aa262a6cab066ea9706a73d40b160f11 (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
24
25
{ config, 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$l4IthYmD8zW2qCeJZLc/e0$84ROPYc.bOajn6gBNuDjuP9uFI5Ql72nB0ZtK5GuqX8";
	};
   };
   #services.xserver.displayManager.autoLogin = {
   #	enable = true;
   #	user = "sils";
   #};

}