1
0
Fork 0
permafrost/modules/nyazoom.nix

31 lines
773 B
Nix
Raw Normal View History

2024-12-27 01:46:11 -08:00
{ lib, config, inputs, pkgs, ... }:
let
nyazoom = inputs.nyazoom.packages.${pkgs.system}.default;
cfg = config.permafrost.nyazoom;
in
{
options.permafrost.nyazoom = {
enable = lib.mkEnableOption "permafrost nixos module";
};
config = lib.mkIf cfg.enable {
2024-12-27 02:58:39 -08:00
systemd.services.nyazoom = {
2024-12-27 05:28:19 -08:00
script = /* bash */''
export DATABASE_URL="sqlite:///var/lib/nyazoom/data"
export DIST_DIR="${nyazoom}/dist"
${lib.getExe nyazoom}
2024-12-27 01:46:11 -08:00
'';
2024-12-27 04:40:52 -08:00
wantedBy = [ "network.target" ];
2024-12-27 01:46:11 -08:00
wants = [ "network.target" ];
};
2024-12-27 04:40:52 -08:00
2024-12-27 05:42:42 -08:00
permafrost.nginx.enable = lib.mkDefault true;
services.nginx.virtualHosts."nyazoom.zynh.me" = {
serverName = "nyazoom.zynh.me";
locations."/".proxyPass = "http://localhost:3000";
};
2024-12-27 01:46:11 -08:00
};
}