google-compute-config.nix: add coreutils to google-instance-setup's $PATH

It executes bin/google_set_multiqueue which will execute basename
This commit is contained in:
Florian Klink 2019-09-01 00:28:28 +02:00
parent 10f5f8c5d8
commit d658dd4ce0

View file

@ -73,7 +73,7 @@ in
description = "Google Compute Engine Instance Setup";
after = [ "network-online.target" "network.target" "rsyslog.service" ];
before = [ "sshd.service" ];
path = with pkgs; [ ethtool openssh ];
path = with pkgs; [ coreutils ethtool openssh ];
serviceConfig = {
ExecStart = "${gce}/bin/google_instance_setup";
StandardOutput="journal+console";