infrastructure/machines/compute01/arkheon.nix

18 lines
321 B
Nix

{ config, sources, ... }:
{
nixpkgs.overlays = [ (import (sources.arkheon.outPath + "/overlays.nix")) ];
services.arkheon = {
enable = true;
domain = "arkheon.dgnum.eu";
nginx = {
enableACME = true;
forceSSL = true;
};
envFile = config.age.secrets."arkheon-env_file".path;
};
}