summaryrefslogtreecommitdiff
path: root/hosts/gnuslashprinter/configuration.nix
blob: 6af701ab6510da85b29d3cd8b9fa76115ae0eeff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
	imports = [ ./klipper.nix ];

	boot._loader.enable = true;

	_archetypes = {
		profiles = {
			headless = {
				enable = true;
				home.users.timmy.enable = true;
			};
			btrfs.enable = true;
		};
	};

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

	system.stateVersion = "25.11";
}