mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-03-22 20:09:07 +01:00
25 lines
622 B
Nix
25 lines
622 B
Nix
{ config, self, ... }:
|
|
{
|
|
imports = [ self.nixosModules.core-profile ];
|
|
|
|
custom = {
|
|
persistence.enable = true;
|
|
networking.overlay.role = "server";
|
|
services = {
|
|
auto-gc.onlyCleanRoots = true;
|
|
comin.enable = true;
|
|
alloy = {
|
|
enable = true;
|
|
domain = "alloy.${config.custom.networking.overlay.fqdn}";
|
|
};
|
|
prometheus = {
|
|
enable = true;
|
|
domain = "prometheus.${config.custom.networking.overlay.fqdn}";
|
|
};
|
|
alertmanager = {
|
|
enable = true;
|
|
domain = "alertmanager.${config.custom.networking.overlay.fqdn}";
|
|
};
|
|
};
|
|
};
|
|
}
|