nixos-server/services.nix

15 lines
251 B
Nix
Raw Normal View History

2024-05-23 12:08:06 +02:00
# List of attrsets defining
# name, ip.host, ip.local, config, hosts
[
{
name = "gitea";
ip = {
host = "10.10.0.1";
local = "10.10.0.2";
};
config = ./guests/gitea.nix;
port = 3001;
hosts = [ "localhost" ];
}
]