summaryrefslogtreecommitdiff
path: root/hosts/common/users.nix
blob: 406a91f146c3f4378e606efc12013127f02272ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
	config,
	lib,
	pkgs,
	...
}: {
	users = {
		defaultUserShell = pkgs.bash;
		mutableUsers = false;

		users = {
			root = {
				home = "/root";
				uid = config.ids.uids.root;
				group = "root";
				initialHashedPassword = "***REMOVED***";
			};
		};
	};
}