summaryrefslogtreecommitdiff
path: root/modules/hosts/T495/configuration.nix
blob: 34686220be3d5c9ef57441e8395de0f6527c5f79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, lib, pkgs, ... }: {
	imports = [
		./hardware-configuration.nix
		./wg.nix
	];
	networking.hostName = "T495";
	config.grub.mode = "efi";

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

	system.stateVersion = "24.05";
}