1
0
forked from clan/clan-infra
clan-infra/targets/flake-module.nix

15 lines
288 B
Nix
Raw Permalink Normal View History

2023-09-19 12:04:52 +00:00
{ self, inputs, ... }:
2023-07-04 14:43:31 +00:00
{
2024-07-15 12:06:07 +00:00
clan = {
2024-06-10 10:10:40 +00:00
meta.name = "infra";
2023-09-19 12:04:52 +00:00
# Make flake available in modules
2024-06-06 15:52:20 +00:00
specialArgs.self = {
inherit (self) inputs nixosModules packages;
2023-09-19 12:04:52 +00:00
};
2024-07-15 12:06:07 +00:00
directory = self;
machines.web01 = {
imports = [ ./web01/configuration.nix ];
2023-09-19 12:04:52 +00:00
};
};
2023-07-04 14:43:31 +00:00
}