host hyperhive website

This commit is contained in:
müde 2026-05-27 20:33:03 +02:00
parent f4a018f25d
commit 908f8698b5
3 changed files with 32 additions and 1 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, hyperhive-website, ... }:
let
blog-domain-socket = "/run/nginx/blog.sock";
anubis-domain-socket = "/run/anubis/anubis-main/anubis.sock";
@ -41,6 +41,12 @@ in
}
];
};
"hyperhive.darkest.space" = {
addSSL = true;
enableACME = true;
root = hyperhive-website.packages.${pkgs.stdenv.hostPlatform.system}.default;
};
};
};