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;