From e49b33fe446ca5a47f9eb04b5163609835db3dad Mon Sep 17 00:00:00 2001 From: tdback Date: Thu, 9 Jan 2025 20:31:34 -0500 Subject: fix: cleanup container configs --- modules/containers/lubelogger/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/containers/lubelogger') diff --git a/modules/containers/lubelogger/default.nix b/modules/containers/lubelogger/default.nix index eb3f58f..37155dc 100644 --- a/modules/containers/lubelogger/default.nix +++ b/modules/containers/lubelogger/default.nix @@ -1,16 +1,16 @@ { lib, ... }: let + inherit (lib.lists) singleton; directory = "/opt/lubelogger"; port = "8889"; in { - systemd.tmpfiles.rules = - builtins.map (x: "d ${x} 0755 share share - -") (lib.lists.singleton directory); + systemd.tmpfiles.rules = builtins.map (x: "d ${x} 0755 share share - -") (singleton directory); virtualisation.oci-containers.containers.lubelogger = { image = "ghcr.io/hargata/lubelogger:latest"; autoStart = true; - ports = [ "${port}:8080" ]; + ports = singleton "${port}:8080"; volumes = [ "${directory}/config:/App/config" "${directory}/data:/App/data" -- cgit v1.2.3