clan-infra/targets/flake-module.nix
Jörg Thalheim d09fe76a4e
Some checks failed
buildbot/nix-eval Build done.
clanName -> meta.name
2024-06-10 12:10:40 +02:00

19 lines
386 B
Nix

{ self, inputs, ... }:
{
flake = inputs.clan-core.lib.buildClan {
meta.name = "infra";
directory = self;
# Make flake available in modules
specialArgs = {
self = {
inherit (self) inputs nixosModules packages;
};
};
machines = {
web01 = { modulesPath, ... }: {
imports = [ (./web01/configuration.nix) ];
};
};
};
}