infrastructure/config/hosts/dummy/meta.nix

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";
};
};
}