blob: cbd90f855b6b535747910bad1a8ffffe3c3807ed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{ grapevine, ... }:
{
privateNetwork = true;
autoStart = true;
config =
{
lib,
pkgs,
...
}:
{
imports = [
../shared.nix
./services/nginx.nix
./services/conduit.nix
grapevine.nixosModules.default
];
networking.useHostResolvConf = true;
networking.firewall = {
enable = true;
allowedTCPPorts = [
80
5432
];
};
};
hostAddress = "192.168.100.1";
localAddress = "192.168.100.13";
}
|