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

15 lines
288 B
Nix

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