581fa6b560
All checks were successful
build configuration / build_vault01 (push) Successful in 1m5s
build configuration / build_web02 (push) Successful in 1m6s
build configuration / build_compute01 (push) Successful in 1m11s
build configuration / build_storage01 (push) Successful in 1m10s
lint / check (push) Successful in 24s
build configuration / build_web01 (push) Successful in 1m33s
build configuration / build_rescue01 (push) Successful in 49s
28 lines
572 B
Nix
28 lines
572 B
Nix
{ config, sources, ... }:
|
|
|
|
{
|
|
nixpkgs.overlays = [ (import (sources.arkheon.outPath + "/overlay.nix")) ];
|
|
|
|
services.arkheon = {
|
|
enable = true;
|
|
|
|
pythonEnv =
|
|
(import sources.nixos-unstable {
|
|
overlays = [ (import (sources.arkheon.outPath + "/overlay.nix")) ];
|
|
}).python3.withPackages
|
|
(ps: [
|
|
ps.arkheon
|
|
ps.daphne
|
|
ps.psycopg2
|
|
]);
|
|
|
|
domain = "arkheon.dgnum.eu";
|
|
|
|
nginx = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
};
|
|
|
|
envFile = config.age.secrets."arkheon-env_file".path;
|
|
};
|
|
}
|