-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathflake.nix
More file actions
126 lines (109 loc) · 3.04 KB
/
Copy pathflake.nix
File metadata and controls
126 lines (109 loc) · 3.04 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
description = "Private Void system configurations";
nixConfig = {
#allow-import-from-derivation = true;
extra-substituters = "https://cache.privatevoid.net";
extra-trusted-public-keys = "cache.privatevoid.net:SErQ8bvNWANeAvtsOESUwVYr2VJynfuc9JRwlzTTkVg=";
};
outputs = { self, nixpkgs, flake-parts, ... }@inputs:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [ "x86_64-linux" "aarch64-linux" ];
herculesCI.ciSystems = [ "x86_64-linux" "aarch64-linux" ];
imports = [
inputs.hercules-ci-effects.flakeModule
inputs.clan.flakeModules.clan
./nixpkgs/part.nix
./hosts/part.nix
./modules/part.nix
./packages/part.nix
./jobs/part.nix
./lib/part.nix
./cluster/part.nix
./catalog/part.nix
./clan/part.nix
];
};
inputs = {
systems.url = "github:privatevoid-net/nix-systems-default-linux";
nixpkgs-input.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs = {
url = "https://forge.privatevoid.net/privatevoid.net/customize-nixpkgs/archive/master.tar.gz";
inputs = {
nixpkgs.follows = "nixpkgs-input";
config.follows = "/";
};
};
clan = {
url = "https://git.clan.lol/clan/clan-core/archive/main.tar.gz";
inputs = {
flake-parts.follows = "flake-parts";
nix-darwin.follows = "blank";
nixpkgs.follows = "nixpkgs-input";
systems.follows = "systems";
};
};
nixos-core = {
url = "github:manic-systems/nixos-core";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-super = {
url = "https://forge.privatevoid.net/max/nix-super/archive/master.tar.gz";
inputs = {
nixpkgs-regression.follows = "blank";
nixpkgs-23-11.follows = "blank";
};
};
hyprspace = {
url = "github:hyprspace/hyprspace";
inputs = {
flake-parts.follows = "flake-parts";
};
};
agenix = {
url = "github:ryantm/agenix";
inputs.nixpkgs.follows = "nixpkgs";
};
nar-serve = {
url = "github:numtide/nar-serve";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
ncro = {
url = "github:manic-systems/ncro";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
devshell = {
url = "github:numtide/devshell";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
hercules-ci-agent = {
url = "github:hercules-ci/hercules-ci-agent";
inputs = {
flake-parts.follows = "flake-parts";
};
};
hercules-ci-effects = {
url = "github:hercules-ci/hercules-ci-effects";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-parts.follows = "flake-parts";
};
};
circus = {
url = "github:manic-systems/circus";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
blank.url = "github:divnix/blank";
};
}