Simplify build-related config

This commit is contained in:
Katherina Walshe-Grey 2024-06-05 23:03:25 +01:00
parent 104d995dd2
commit 433930bde6
4 changed files with 39 additions and 23 deletions

12
colmena/remote.nix Normal file
View file

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