deployment: rename from colmena (for potential change in stack)
This commit is contained in:
parent
54dd52b978
commit
9ae5563f83
3 changed files with 3 additions and 3 deletions
10
deployment/local.nix
Normal file
10
deployment/local.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{ name, nodes, config, lib, pkgs, ... }:
|
||||
|
||||
let sources = import ../npins;
|
||||
in {
|
||||
deployment = {
|
||||
allowLocalDeployment = true;
|
||||
targetHost = null;
|
||||
tags = [ "local" ];
|
||||
};
|
||||
}
|
12
deployment/remote.nix
Normal file
12
deployment/remote.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ name, nodes, config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
deployment = {
|
||||
targetHost = "${name}.birdsong.network";
|
||||
targetUser = "qenya";
|
||||
tags = [ "remote" ];
|
||||
};
|
||||
|
||||
security.sudo.wheelNeedsPassword = false;
|
||||
nix.settings.trusted-users = [ "@wheel" ];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue