From fc0ff0e2a1dc882f10a83af80acb16403007bbb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sat, 22 Jul 2023 11:26:57 +0100 Subject: [PATCH] containers: set the defaults for containers accordingly --- src/modules/containers.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/containers.nix b/src/modules/containers.nix index 97dcd817d..983d7f3db 100644 --- a/src/modules/containers.nix +++ b/src/modules/containers.nix @@ -185,13 +185,13 @@ in container.isBuilding = envContainerName != ""; containers.shell = { - name = "shell"; - startupCommand = "bash"; + name = lib.mkDefault "shell"; + startupCommand = lib.mkDefault "bash"; }; containers.processes = { - name = "processes"; - startupCommand = config.procfileScript; + name = lib.mkDefault "processes"; + startupCommand = lib.mkDefault config.procfileScript; }; } (if envContainerName == "" then { } else {