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