mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
12 lines
268 B
Nix
12 lines
268 B
Nix
{ lib, config, root, profiles, ... }: with lib; {
|
|
deploy.targets.dummy.enable = false;
|
|
network.nodes.dummy = {
|
|
imports = lib.hostImport {
|
|
hostName = "dummy";
|
|
inherit profiles root;
|
|
};
|
|
networking = {
|
|
hostName = "dummy";
|
|
};
|
|
};
|
|
}
|