depot/cluster/services/websites/default.nix

16 lines
193 B
Nix

{ config, ... }:
let
inherit (config.vars) hosts;
in
{
services.websites = {
nodes = {
host = [ "VEGAS" "prophet" ];
};
nixos = {
host = ./host.nix;
};
};
}