summaryrefslogtreecommitdiff
path: root/modules/hosts/flex-wg-router/configuration.nix
blob: 3edb35490d7a9dcc7e9e46a577a526a4cfa61e5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, lib, pkgs, ... }: {
	imports = [
		./hardware-configuration.nix
		../../archetypes/headless
	];
	bootloader.mode = "efi";

	# Enable docker
	software.development = {
		docker.enable = true;
	};

	system.stateVersion = "25.05";
}