summaryrefslogtreecommitdiff
path: root/hosts/glados/users.nix
blob: e0b04c551392e57e7aa3086b72f5f9b3125dfdc4 (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
25
26
27
{ config, lib, pkgs, ... }:

with config; with lib; with pkgs;
{
	users = {
		defaultUserShell = bash;
		mutableUsers = false;

		users = {

			root = {
				home = "/root";
				uid = ids.uids.root;
				group = "root";
				initialHashedPassword = mkDefault "!";
			};

			seth = {
				extraGroups = [ "wheel" ];
				isNormalUser = true;
				hashedPassword = "idontknowhowtosecurethis";
				shell = fish;
			};

		};
	};
}