From 41bf8a074ec6893515d7ca9ed596a806470ea19d Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Sun, 8 Dec 2024 12:21:58 -0600 Subject: [PATCH] simplified --- nixos/loki.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/loki.nix b/nixos/loki.nix index 71e1e72..132599c 100644 --- a/nixos/loki.nix +++ b/nixos/loki.nix @@ -1,4 +1,4 @@ -{ pkgs, lokiUser ? "loki", lokiPort ? (3100), lokiPath, ... }: +{ pkgs, lokiPort ? 3100, ... }: { networking.firewall.allowedTCPPorts = [ lokiPort ]; @@ -9,7 +9,7 @@ services.loki = { enable = true; - user = "${lokiUser}"; + user = "loki"; configuration = { server.http_listen_port = lokiPort;