forked from Deuxfleurs/nixcfg
TODOs in deuxfleurs.nix because the old world is maybe mixing with the new
This commit is contained in:
parent
1a2ff3f6b9
commit
f7be968531
3 changed files with 4 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
||||||
job "core" {
|
job "core" {
|
||||||
datacenters = ["orion", "neptune", "bespin"]
|
datacenters = ["orion", "neptune", "bespin", "scorpio"]
|
||||||
type = "system"
|
type = "system"
|
||||||
priority = 90
|
priority = 90
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
job "garage" {
|
job "garage" {
|
||||||
datacenters = [ "neptune", "bespin", "orion" ]
|
datacenters = [ "neptune", "bespin", "orion", "scorpio" ]
|
||||||
type = "system"
|
type = "system"
|
||||||
priority = 80
|
priority = 80
|
||||||
|
|
||||||
|
|
|
@ -227,7 +227,7 @@ in
|
||||||
};
|
};
|
||||||
# Reach Unbound through the IP of our LAN interface,
|
# Reach Unbound through the IP of our LAN interface,
|
||||||
# instead of 127.0.0.1 (this will also work in Docker containers)
|
# instead of 127.0.0.1 (this will also work in Docker containers)
|
||||||
networking.nameservers = [
|
networking.nameservers = [ # TODO remove this ?
|
||||||
cfg.lan_ip
|
cfg.lan_ip
|
||||||
];
|
];
|
||||||
services.resolved.enable = false;
|
services.resolved.enable = false;
|
||||||
|
@ -297,7 +297,7 @@ in
|
||||||
verify_outgoing = true;
|
verify_outgoing = true;
|
||||||
verify_server_hostname = true;
|
verify_server_hostname = true;
|
||||||
};
|
};
|
||||||
systemd.services.consul.serviceConfig = {
|
systemd.services.consul.serviceConfig = { # TODO remove this ?
|
||||||
AmbientCapabilities = "CAP_NET_BIND_SERVICE";
|
AmbientCapabilities = "CAP_NET_BIND_SERVICE";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue