summaryrefslogtreecommitdiff
path: root/modules/hosts/X230/configuration.nix
blob: 9a8e6b42b0775e2b13a070727eea5365bfd93ee8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ 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;
	};

	system.stateVersion = "24.05";
}