12 lines
154 B
Nix
12 lines
154 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
services.websites = {
|
|
nodes = {
|
|
host = [ "VEGAS" "prophet" ];
|
|
};
|
|
nixos = {
|
|
host = ./host.nix;
|
|
};
|
|
};
|
|
}
|