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:
parent
65d6043d32
commit
7f4c60a3d6
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||||
'';
|
'';
|
||||||
})
|
})
|
||||||
]);
|
]);
|
||||||
|
|
Loading…
Add table
Reference in a new issue