infrastructure/machines/compute01/arkheon.nix

19 lines
321 B
Nix
Raw Normal View History

2024-03-08 11:54:59 +01:00
{ 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;
};
}