summaryrefslogtreecommitdiff
path: root/modules/hosts/T495/configuration.nix
blob: a8ccff1d863eed5b5cb858d0327d180b632ea57a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, lib, pkgs, ... }: {
	imports = [
		./hardware-configuration.nix
		./wg.nix
	];
	system.stateVersion = "24.05";

	networking.hostName = "T495";

	environment.systemPackages = with pkgs; [
		input-leap
	];
}