clan-infra/targets/flake-module.nix
Jörg Thalheim dfd39c8ce9
All checks were successful
build / test (pull_request) Successful in 5m45s
checks / test (pull_request) Successful in 21s
use also buildClan
2023-09-19 14:06:26 +02:00

18 lines
381 B
Nix

{ self, inputs, ... }:
{
flake.nixosConfigurations = 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) ];
};
};
};
}