1
0
localhost/secrets.nix.example

19 lines
422 B
Plaintext
Raw Normal View History

2019-06-21 19:14:17 +00:00
{
iptables = ''
# vpn with default interface name (tun/tap)
iptables -A OUTPUT -d 192.0.2.15 -j ACCEPT
# vpn with non-default interface name
iptables -A OUTPUT -d 192.0.2.67 -j ACCEPT
iptables -A OUTPUT -o cute-vpn -j ACCEPT
'';
vpn-config = "config /var/vpn/changeme.ovpn";
vpn-username = "changeme";
vpn-password = "changeme";
# for redshift
2020-06-03 18:28:15 +00:00
latitude = 42.42;
longitude = 42.42;
2019-06-21 19:14:17 +00:00
}