mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-03-22 23:29:08 +01:00
17 lines
405 B
Nix
17 lines
405 B
Nix
{ config, self, ... }:
|
|
{
|
|
imports = [ self.nixosModules.profile-core ];
|
|
|
|
custom = {
|
|
persistence.enable = true;
|
|
networking.overlay.role = "server";
|
|
services = {
|
|
auto-gc.onlyCleanRoots = true;
|
|
comin.enable = true;
|
|
};
|
|
web-services.alloy = {
|
|
enable = true;
|
|
domain = "alloy.${config.networking.hostName}.${config.custom.networking.overlay.domain}";
|
|
};
|
|
};
|
|
}
|