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 308c375 commit c6bcef8Copy full SHA for c6bcef8
flake.nix
@@ -199,10 +199,7 @@
199
in
200
flake-parts.lib.mkFlake {inherit inputs;} {
201
imports = [
202
- ./modules/lido
203
- ./modules/tailscale-autoconnect
204
- ./modules/grafana-agent-flow
205
- ./modules/pyroscope
+ ./modules
206
./packages
207
];
208
systems = ["x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"];
@@ -216,8 +213,8 @@
216
213
};
217
214
flake.lib.create = {
218
215
rootDir,
219
- machinesDir ? null,
220
- usersDir ? null,
+ machinesDir ? rootDir + "/machines",
+ usersDir ? rootDir + "/users",
221
}: {
222
dirs = {
223
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