infrastructure/depot/hosts/dummy/meta.nix
2021-08-18 00:31:04 +01:00

8 lines
173 B
Nix

{ config, lib, kw, ... }: with lib; {
deploy.targets.dummy.enable = false;
network.nodes.dummy = {
imports = kw.nodeImport {
hostName = "dummy";
};
};
}