summaryrefslogtreecommitdiff
path: root/hosts/glados/default.nix
blob: 96fa38119fefd7a3a324ee1890ec03983c8ae7ab (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
{
	config,
	modulesPath,
	pkgs,
	...
}: {
	imports = [
		(modulesPath + "/profiles/minimal.nix")
		../common
		../common/desktop/gnome.nix
		../common/hardware/nvidia.nix
		./boot.nix
		./network.nix
		./packages.nix
		../../users/seth
	];

	system.gui-stuff = true;

	# enable non-free packages
	nixpkgs.config.allowUnfree = true;

	# Enable nix flakes
	nix.package = pkgs.nixFlakes;
	nix.settings.experimental-features = ["nix-command" "flakes"];

	system.stateVersion = "23.05";
}