infrastructure/config/hosts/dummy/meta.nix
2021-08-07 03:02:27 +01:00

9 lines
196 B
Nix

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