summaryrefslogtreecommitdiff
path: root/modules/hosts/X230/configuration.nix
blob: 4c8adab5fb21da8e3bcac9af0c68a978de0d798a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ config, lib, pkgs, ... }: {
	imports = [
		./hardware-configuration.nix
	];
	bootloader.mode = "efi";

	# Enable extra software pkgs
	software.desktop = {
		crypto.enable = true;
		graphics.enable = true;
		office.enable = true;
		video.enable = true;
	};

	# Allow unfree for nvidia + others
	nixpkgs.config.allowUnfree = true;

	# Enable decklink
	decklink.enable = true;

	system.stateVersion = "24.05";
}