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