Files
flocon/machines/genepi/configuration.nix
Romain Paquet 09f57a1e6f clan: migrate internal DNS to coredns service
Currently using a patched version of the upstream
coredns service, with hard-coded IPs until
wireguard exports are supported.

Zerotier connections were flaky and wireguard
seems more stable (although it seems to have a bit
less throughput).
2025-11-27 14:52:45 +01:00

39 lines
706 B
Nix

{
self,
...
}:
{
imports = [
./actual.nix
./boot.nix
./builder.nix
./freshrss.nix
./glance.nix
./homeassistant.nix
./immich.nix
./monitoring
./mpd.nix
./network.nix
./nginx.nix
./pinchflat.nix
./syncthing.nix
../../modules/acme-home.nix
../../modules/lounge.nix
self.nixosModules.nix-defaults
self.nixosModules.user-rpqt
self.inputs.srvos.nixosModules.mixins-terminfo
];
networking.hostName = "genepi";
time.timeZone = "Europe/Paris";
services.prometheus.checkConfig = "syntax-only";
clan.core.vars.generators.garage.files.metrics_token.owner = "prometheus";
clan.core.settings.state-version.enable = true;
}