-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
71 lines (69 loc) · 1.8 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
{
outputs = {
self,
std,
hive,
...
} @ inputs: let
lib = import ./lib {nixpkgs = inputs.nixpkgs;};
in
hive.growOn
{
inputs = inputs // {inherit lib;};
cellsFrom = ./cells;
cellBlocks = with std.blockTypes;
with hive.blockTypes; [
(functions "bee")
(functions "nixosTemplates")
(functions "nixosTags")
(functions "diskoTags")
(functions "nixosModules")
(installables "packages")
nixosConfigurations
colmenaConfigurations
];
}
{
nixosConfigurations = hive.collect self "nixosConfigurations";
colmenaHive = hive.collect self "colmenaConfigurations";
};
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs-stable.url = "github:nixos/nixpkgs/release-24.11";
d2df-flake = {
url = "github:Doom2D/flake.nix";
inputs = {nixpkgs.follows = "nixpkgs";};
};
chaotic.url = "github:chaotic-cx/nyx";
nixos-anywhere = {
url = "github:nix-community/nixos-anywhere/main";
inputs.nixpkgs.follows = "nixpkgs";
inputs.disko.follows = "nixpkgs";
};
nixos-openvz = {
url = "github:zhaofengli/nixos-openvz";
inputs.nixpkgs.follows = "nixpkgs";
};
disko = {
url = "github:nix-community/disko/master";
inputs.nixpkgs.follows = "nixpkgs";
};
colmena = {
url = "github:zhaofengli/colmena";
inputs.nixpkgs.follows = "nixpkgs";
};
haumea = {
url = "github:nix-community/haumea";
inputs.nixpkgs.follows = "nixpkgs";
};
std = {
url = "github:divnix/std";
inputs.nixpkgs.follows = "nixpkgs";
};
hive = {
url = "github:divnix/hive";
inputs.nixpkgs.follows = "nixpkgs";
inputs.colmena.follows = "colmena";
};
};
}