From ddc5d11644e4e0e62638a8214060251a474694ce Mon Sep 17 00:00:00 2001 From: Tony Klink Date: Mon, 15 Jan 2024 16:27:48 -0600 Subject: [PATCH] Fix nix module --- modules/sneedstr.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/sneedstr.nix b/modules/sneedstr.nix index 4a4a60d..91a1884 100644 --- a/modules/sneedstr.nix +++ b/modules/sneedstr.nix @@ -64,7 +64,7 @@ in { }; serviceConfig = { ExecStart = - "${inputs.sneedstr.packages.x86_64-linux.default}/bin/sneedstr"; + "${inputs.sneedstr.packages.x86_64-linux.default}/bin/sneedstr"; }; wantedBy = [ "multi-user.target" ]; }; @@ -98,6 +98,7 @@ in { locations."/" = { proxyPass = "http://${cfg.localAddress}:8080"; proxyWebsockets = true; # needed if you need to use WebSocket + }; }; }; };