19 lines
293 B
Nix
19 lines
293 B
Nix
{ ... }:
|
|
let
|
|
module = ./default.nix;
|
|
in
|
|
{
|
|
clan.modules = {
|
|
"@rpqt/coredns" = module;
|
|
};
|
|
# perSystem =
|
|
# { ... }:
|
|
# {
|
|
# clan.nixosTests.coredns = {
|
|
# imports = [ ./tests/vm/default.nix ];
|
|
|
|
# clan.modules."@rpqt/coredns" = module;
|
|
# };
|
|
# };
|
|
}
|