We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e436c6a commit 5600039Copy full SHA for 5600039
flake.nix
@@ -202,10 +202,7 @@
202
in
203
flake-parts.lib.mkFlake {inherit inputs;} {
204
imports = [
205
- ./modules/lido
206
- ./modules/tailscale-autoconnect
207
- ./modules/grafana-agent-flow
208
- ./modules/pyroscope
+ ./modules
209
./packages
210
];
211
systems = ["x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"];
@@ -219,8 +216,8 @@
219
216
};
220
217
flake.lib.create = {
221
218
rootDir,
222
- machinesDir ? null,
223
- usersDir ? null,
+ machinesDir ? rootDir + "/machines",
+ usersDir ? rootDir + "/users",
224
}: {
225
dirs = {
226
lib = self + "/lib";
modules/default.nix
@@ -0,0 +1,8 @@
1
+{
2
+ imports = [
3
+ ./lido
4
+ ./tailscale-autoconnect
5
+ ./grafana-agent-flow
6
+ ./pyroscope
7
+ ];
8
+}
0 commit comments