fix(compute01): Make it work ?
All checks were successful
build configuration / build_web02 (push) Successful in 1m8s
build configuration / build_vault01 (push) Successful in 1m9s
build configuration / build_rescue01 (push) Successful in 1m8s
build configuration / build_storage01 (push) Successful in 1m13s
lint / check (push) Successful in 24s
build configuration / build_web01 (push) Successful in 1m35s
build configuration / build_compute01 (push) Successful in 2m38s

This commit is contained in:
Tom Hubrecht 2024-03-08 11:54:59 +01:00
parent 2ade516d48
commit 2a388f53ac
4 changed files with 17 additions and 4 deletions

View file

@ -1,11 +1,23 @@
{ config, sources, ... }:
{
nixpkgs.overlays = [ (import (sources.arkheon.outPath + "/overlays.nix")) ];
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 = {