nixos-config/nixos/hosts/reisen-nrt0/default.nix

22 lines
375 B
Nix

{
suites,
profiles,
mylib,
...
}:
{
imports =
suites.server
++ (with profiles; [
services.caddy
services.knot.secondary
services.ntfy
services.prometheus.node-exporter
services.prometheus.ping-exporter
services.prometheus.server
])
++ (mylib.path.scanPaths ./. "default.nix");
system.stateVersion = "24.11";
}