18 lines
396 B
Nix
18 lines
396 B
Nix
{ config, ... }:
|
|
let
|
|
inherit (import ../lib.nix config) havenisms;
|
|
in
|
|
{
|
|
|
|
virtualisation.web-containers.containers.storyden = {
|
|
image = "ghcr.io/southclaws/storyden";
|
|
port = 8000;
|
|
hostname = "storyden";
|
|
domain = havenisms;
|
|
environment = {
|
|
PUBLIC_WEB_ADDRESS = "https://storyden.${havenisms}";
|
|
PUBLIC_API_ADDRESS = "https://storyden.${havenisms}";
|
|
};
|
|
};
|
|
}
|