forked from DGNum/infrastructure
22 lines
427 B
Nix
22 lines
427 B
Nix
# SPDX-FileCopyrightText: 2024 Tom Hubrecht <tom.hubrecht@dgnum.eu>
|
|
#
|
|
# SPDX-License-Identifier: EUPL-1.2
|
|
|
|
{ config, sources, ... }:
|
|
|
|
{
|
|
nixpkgs.overlays = [ (import (sources.arkheon.outPath + "/overlay.nix")) ];
|
|
|
|
services.arkheon = {
|
|
enable = true;
|
|
|
|
domain = "arkheon.dgnum.eu";
|
|
|
|
nginx = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
};
|
|
|
|
envFile = config.age.secrets."arkheon-env_file".path;
|
|
};
|
|
}
|