1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-18 14:28:15 +00:00

podman: fix podman-user-wait-network-online (#6586)

Adding coreutils to path for podman to fix issues when not available in environment path already.
This commit is contained in:
Nikolaos Karaolidis 2025-03-08 19:22:11 +00:00 committed by GitHub
parent 65d6043d32
commit 7f4c60a3d6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -65,7 +65,9 @@ in {
xdg.configFile."systemd/user/podman-user-wait-network-online.service.d/50-exec-search-path.conf".text = xdg.configFile."systemd/user/podman-user-wait-network-online.service.d/50-exec-search-path.conf".text =
'' ''
[Service] [Service]
ExecSearchPath=${pkgs.bashInteractive}/bin:${pkgs.systemd}/bin:/bin ExecSearchPath=${
makeBinPath (with pkgs; [ bashInteractive systemd coreutils ])
}:/bin
''; '';
}) })
]); ]);