nixos-config/profiles/server.nix

17 lines
368 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}";
};
};
};
}