infrastructure/depot/hosts/dummy/meta.nix
2021-08-09 03:04:41 +01:00

12 lines
256 B
Nix

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