summaryrefslogtreecommitdiff
path: root/users/seth/default.nix
blob: cc1931567b5dfb6ebf601e34b63c2db0e6147db4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
	config,
	pkgs,
	home-manager,
	...
}: {
	users.users.seth = {
		extraGroups = ["wheel"];
		isNormalUser = true;
		hashedPassword = "***REMOVED***";
		shell = pkgs.zsh;
	};

	home-manager.users.seth = {
		imports = [
			./home.nix
		];

		home.stateVersion = config.system.stateVersion;
		nixpkgs.config.allowUnfree = true;
		programs.home-manager.enable = true;
		systemd.user.startServices = true;
	};
}