mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
12 lines
256 B
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";
|
|
};
|
|
};
|
|
}
|