summaryrefslogtreecommitdiff
path: root/modules/hosts/T495/configuration.nix
blob: 6ee62e9c5e205ec4b0263e079ef9445590caa091 (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
{ config, lib, pkgs, ... }: {
	imports = [
		./hardware-configuration.nix
		./games.nix
		#./input-leap.nix
		./wg.nix
	];
	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;
	nas.office.automount = false;

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

	# Enable bluetooth
	bluetooth.enable = true;

	system.stateVersion = "24.05";
}