From 7f4c60a3d6e548dbc13666565c22cb3f8dcdad44 Mon Sep 17 00:00:00 2001 From: Nikolaos Karaolidis Date: Sat, 8 Mar 2025 19:22:11 +0000 Subject: [PATCH] podman: fix podman-user-wait-network-online (#6586) Adding coreutils to path for podman to fix issues when not available in environment path already. --- modules/services/podman-linux/services.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/services/podman-linux/services.nix b/modules/services/podman-linux/services.nix index 87ff83ad8..5d31485f4 100644 --- a/modules/services/podman-linux/services.nix +++ b/modules/services/podman-linux/services.nix @@ -65,7 +65,9 @@ in { xdg.configFile."systemd/user/podman-user-wait-network-online.service.d/50-exec-search-path.conf".text = '' [Service] - ExecSearchPath=${pkgs.bashInteractive}/bin:${pkgs.systemd}/bin:/bin + ExecSearchPath=${ + makeBinPath (with pkgs; [ bashInteractive systemd coreutils ]) + }:/bin ''; }) ]);