10 lines
148 B
Nix
10 lines
148 B
Nix
{ name, nodes, config, lib, pkgs, ... }:
|
|
|
|
{
|
|
deployment = {
|
|
allowLocalDeployment = true;
|
|
targetHost = null;
|
|
tags = [ "local" ];
|
|
};
|
|
}
|