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

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

	# Enable set root password
	users.setPassword.enable = true;

	system.stateVersion = "25.05";
}