nixfiles/colmena/remote.nix

12 lines
186 B
Nix

{ name, nodes, config, lib, pkgs, ... }:
{
deployment = {
targetHost = "${name}.birdsong.network";
tags = [ "remote" ];
};
imports = [
../services/openssh.nix
];
}