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

12 lines
261 B
Nix

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