-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
85 lines (83 loc) · 2.58 KB
/
flake.nix
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
description = "Ryan's NixOS configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs2311.url = "github:nixos/nixpkgs/nixos-23.11";
nixos-hardware.url = "github:nixos/nixos-hardware";
agenix = {
url = "github:ryantm/agenix";
inputs.nixpkgs.follows = "nixpkgs";
};
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
nixos-generators = {
url = "github:nix-community/nixos-generators";
inputs.nixpkgs.follows = "nixpkgs";
};
utils = {
url = "github:gytis-ivaskevicius/flake-utils-plus";
};
};
outputs =
{ self
, agenix
, home-manager
, nixos-generators
, nixos-hardware
, nixpkgs
, nixpkgs2311
, utils
, ...
} @ inputs: {
nixosModules = import ./modules { lib = nixpkgs.lib; };
nixosConfigurations = {
hp = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/hp/configuration.nix
agenix.nixosModules.age
home-manager.nixosModules.home-manager
nixos-generators.nixosModules.all-formats
utils.nixosModules.autoGenFromInputs
];
specialArgs = { inherit inputs; };
};
hp_stripped = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/hp_stripped/configuration.nix
agenix.nixosModules.age
home-manager.nixosModules.home-manager
nixos-generators.nixosModules.all-formats
utils.nixosModules.autoGenFromInputs
];
specialArgs = { inherit inputs; };
};
proxmox_lxc = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/proxmox-lxc/configuration.nix
agenix.nixosModules.age
home-manager.nixosModules.home-manager
nixos-generators.nixosModules.all-formats
utils.nixosModules.autoGenFromInputs
];
specialArgs = { inherit inputs; };
};
pxe = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/pxe/configuration.nix
<nixpkgs/nixos/modules/installer/netboot/netboot-minimal.nix>
agenix.nixosModules.age
home-manager.nixosModules.home-manager
#nixos-generators.nixosModules.all-formats
utils.nixosModules.autoGenFromInputs
];
specialArgs = { inherit inputs; };
};
};
};
}