TODOs in deuxfleurs.nix because the old world is maybe mixing with the new

This commit is contained in:
Adrien 2023-03-15 18:19:01 +01:00
parent 1a2ff3f6b9
commit f7be968531
3 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
job "core" {
datacenters = ["orion", "neptune", "bespin"]
datacenters = ["orion", "neptune", "bespin", "scorpio"]
type = "system"
priority = 90

View file

@ -1,5 +1,5 @@
job "garage" {
datacenters = [ "neptune", "bespin", "orion" ]
datacenters = [ "neptune", "bespin", "orion", "scorpio" ]
type = "system"
priority = 80

View file

@ -227,7 +227,7 @@ in
};
# Reach Unbound through the IP of our LAN interface,
# instead of 127.0.0.1 (this will also work in Docker containers)
networking.nameservers = [
networking.nameservers = [ # TODO remove this ?
cfg.lan_ip
];
services.resolved.enable = false;
@ -297,7 +297,7 @@ in
verify_outgoing = true;
verify_server_hostname = true;
};
systemd.services.consul.serviceConfig = {
systemd.services.consul.serviceConfig = { # TODO remove this ?
AmbientCapabilities = "CAP_NET_BIND_SERVICE";
};