clan-infra/targets/flake-module.nix
Jörg Thalheim f9f5b85e86
All checks were successful
build / test (pull_request) Successful in 9s
checks / test (pull_request) Successful in 19s
also import clanInternals
2023-09-28 17:11:11 +02:00

18 lines
361 B
Nix

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