nixos/moonraker: Add iproute2 to path

This commit is contained in:
Zhaofeng Li 2022-03-22 15:35:38 -07:00
parent 0c186263c0
commit 787aaea68e

View File

@ -128,6 +128,9 @@ in {
exec ${pkg}/bin/moonraker -c ${cfg.configDir}/moonraker-temp.cfg
'';
# Needs `ip` command
path = [ pkgs.iproute2 ];
serviceConfig = {
WorkingDirectory = cfg.stateDir;
Group = cfg.group;