summaryrefslogtreecommitdiff
path: root/modules/hosts/T495/configuration.nix
blob: a3bad325e97b0f6ee812f5abc403aefdd9816511 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ config, lib, pkgs, ... }: {
	imports = [
		./hardware-configuration.nix
		./games.nix
		./input-leap.nix
		./wg.nix
	];
	networking.hostName = "T495";

	bootloader.mode = "efi";

	# Enable extra software pkgs
	software.desktop = {
		chromium.enable = true;
		cad.enable = true;
		crypto.enable = true;
		graphics.enable = true;
		office.enable = true;
		utilities.enable = true;
	};
	software.development = {
		docker.enable = true;
	};

	# Enable network drives
	nas.enable = true;
	nas.office.enable = true;

	networking.hosts = {
		"192.168.77.3"  = [ "devel" ];
	};

	# Use amdgpu driver for x11
	services.xserver.videoDrivers = [ "amdgpu" ];

	# Enable bluetooth
	bluetooth.enable = true;

	system.stateVersion = "24.05";
}