summaryrefslogtreecommitdiff
path: root/hosts/flex-wg-router/configuration.nix
blob: b09c3f0571274f885949da920a5b172259b82b61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ config, lib, pkgs, ... }: {
	# Setup bootloader
	boot._loader.enable = true;

	_archetypes = {
		# Use headless profile
		profiles.headless.enable = true;
		# Install software
		collections = {
			development = {
				docker.enable = true;
			};
		};
	}

	system.stateVersion = "25.05";
}