summaryrefslogtreecommitdiff
path: root/hosts/sweetiepc/configuration.nix
blob: 5c6b4274b33c573bbb613091e49c06dcf6df5c50 (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
28
29
30
31
32
33
34
35
36
37
38
{ config, lib, pkgs, home-manager, ... }: {
	# Setup bootloader
	boot._loader.enable = true;

	# Enable common options
	_archetypes = {
		profiles = {
			desktop = {
				enable = true;
				home.users.timmy.enable = true;
			};
			zfs.enable = true;
		};
		collections = {
			desktop = {
				office.enable = true;
			};
		};
	};

	# Enable user timmy
	_users.timmy = {
		enable = true;
	};

	# Disable suspend
	systemd._suspend.disable = true;

	# Configure home
	home-manager.users.timmy = {
		fonts.fontconfig = {
			subpixelRendering = "rgb";
			hinting = "none";
		};
	};

	system.stateVersion = "26.05";
}