about summary refs log tree commit diff
path: root/flake.nix
blob: 3618e4abdbcee2eb93a5db5237452016fb04e2f2 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
	description = "Nixos config flake";

	inputs = {
		nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";

		home-manager = {
			url = "github:nix-community/home-manager/release-24.05";
			inputs.nixpkgs.follows = "nixpkgs";
		};
		nixos-hardware.url = "github:NixOS/nixos-hardware/master";
	};

	outputs = { self, nixpkgs, ... }@inputs: 

let
		nixosSystem = system: name: nixosModules: nixpkgs.lib.nixosSystem {
			inherit system;
			specialArgs = {inherit inputs;};
			modules = nixosModules ++ [
				({ config, ... }:
				 {
				 	networking.hostName = name;
				 	nix = {
				 		extraOptions = "extra-experimental-features = nix-command flakes";
				 	};
				 })
				./machines/${name}
			];
		};
	in {
		nixosConfigurations = {
			x220-gnome = nixosSystem "x86_64-linux" "x220-gnome" [
				inputs.home-manager.nixosModules.default
				{
					home-manager.useGlobalPkgs = true;
					home-manager.useUserPackages = true;
					home-manager.users.pn = import ./home.nix;
				}
			];
			t14 = nixosSystem "x86_64-linux" "t14" [
				./modules/gnome.nix
				inputs.nixos-hardware.nixosModules.lenovo-thinkpad-t14-amd-gen2
				inputs.home-manager.nixosModules.default
				{
					home-manager.useGlobalPkgs = true;
					home-manager.useUserPackages = true;
					home-manager.users.pn = import ./home.nix;
				}
			];
		};
	};
}