blob: 30ccc3fe26ae4b2ca77799b4385ae50b3e759063 (
plain)
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
32
|
{ config, lib, pkgs, ... }:
{
networking = {
domain = "vapor.systems";
hostName = "test1";
};
pubKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKUp0JDfsn8peaZn1N6NxtdQvaElWr1QPeOV1wdgCZDb";
wireguard = {
enable = true;
v4 = { address = "10.10.0.1"; };
v6 = { address = "1"; };
publicKey = "kgb+qZvIHkMx0Rn1E9+zvKK8Qw5vBOkQ5wtO0O1Um1o=";
allowedIPs = [ "10.102.5.0/24" "fd15:3d8c:d429:102:500::/72" ];
endpoint = "80.240.27.237";
};
kubernetes = {
role = "server";
advertiseAddress = "80.240.27.237";
};
_module.args.nixinate = {
host = "80.240.27.237";
sshUser = "audron";
buildOn = "remote";
substituteOnTarget = true;
hermetic = false;
};
}
|