summaryrefslogtreecommitdiff
path: root/configuration.nix
blob: 4e5635e689e919ddb45b2b7c4da2bd78bb3fe2a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ pkgs, config, modulesPath, ... }:

{
	imports = [
		"${modulesPath}/profiles/minimal.nix"
	];

	# enable non-free packages
	nixpkgs.config.allowUnfree = true;
	
	# Enable nix flakes
	nix.package = pkgs.nixFlakes;
	nix.settings.experimental-features = [ "nix-command" "flakes" ];
	
	system.stateVersion = "22.11";
}