From cc2db6bdc398bcee9c5ef3ac37e17ffb4a040c29 Mon Sep 17 00:00:00 2001 From: qvalentin Date: Tue, 4 Mar 2025 20:35:54 +0100 Subject: [PATCH] deploy --- nixos.nix | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 nixos.nix diff --git a/nixos.nix b/nixos.nix new file mode 100644 index 0000000..8ac97ae --- /dev/null +++ b/nixos.nix @@ -0,0 +1,52 @@ +{ + lib, + pkgs, + config, + ... +}: +with lib; +let + cfg = config.services.wormspace; + package = (pkgs.callPackage ./default.nix { pkgs = pkgs; }); +in +{ + options.services.wormspace = { + enable = mkEnableOption "wormspace service"; + + nginxHostname = mkOption { + type = types.str; + default = "wormspace.filefighte.de"; + }; + port = mkOption { + type = types.int; + default = 8999; + }; + }; + + config = mkIf cfg.enable { + systemd.services.wormspace = { + description = "wormspace"; + + wantedBy = [ "multi-user.target" ]; + after = [ "network.target" ]; + + serviceConfig = { + ExecStart = "${package}/bin/wormspace ${ + escapeShellArg (toString cfg.port) + }"; + # WorkingDirectory = cfg.configPackage; + DynamicUser = true; + User = "wormspace"; + }; + }; + + services.nginx.virtualHosts.${cfg.nginxHostname} = { + locations = { + "/" = { + proxyPass = "http://127.0.0.1:${toString cfg.port}"; + }; + }; + }; + }; + +}