summaryrefslogtreecommitdiff
path: root/modules/hosts/T495/configuration.nix
blob: 8e10260f23d25e0835756c6ce00ecf276affe891 (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
{ config, lib, pkgs, ... }: {
	imports = [
		./hardware-configuration.nix
		./wg.nix
	];
	networking.hostName = "T495";

	# Use systemd-boot instead of grub
	# grub does not recognize fs
	grub.enable = false;
	boot.loader = {
		systemd-boot.enable = true;
		efi.canTouchEfiVariables = true;
	};

	# Enable extra software pkgs
	software = {
		desktop.extra.enable = true;
		dev.extra.enable = true;
	};
	environment.systemPackages = with pkgs; [
		input-leap
	];
	docker.enable = true;

	# Enable network drives
	fs.networkFS.enable = true;

	system.stateVersion = "24.05";
}