about summary refs log tree commit diff
path: root/nixos/modules/virtualisation
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2019-09-01 00:28:28 +0200
committerFlorian Klink <flokli@flokli.de>2019-09-01 01:23:18 +0200
commitd658dd4ce0bf1c9b0206b1cb737ea3bfb4fdd6dd (patch)
treeb067681fa0ce0ab46bcd109c76c7242855593032 /nixos/modules/virtualisation
parent10f5f8c5d8036f5eac629df7939ed5e6c1bcabbb (diff)
downloadnixlib-d658dd4ce0bf1c9b0206b1cb737ea3bfb4fdd6dd.tar
nixlib-d658dd4ce0bf1c9b0206b1cb737ea3bfb4fdd6dd.tar.gz
nixlib-d658dd4ce0bf1c9b0206b1cb737ea3bfb4fdd6dd.tar.bz2
nixlib-d658dd4ce0bf1c9b0206b1cb737ea3bfb4fdd6dd.tar.lz
nixlib-d658dd4ce0bf1c9b0206b1cb737ea3bfb4fdd6dd.tar.xz
nixlib-d658dd4ce0bf1c9b0206b1cb737ea3bfb4fdd6dd.tar.zst
nixlib-d658dd4ce0bf1c9b0206b1cb737ea3bfb4fdd6dd.zip
google-compute-config.nix: add coreutils to google-instance-setup's $PATH
It executes bin/google_set_multiqueue which will execute basename
Diffstat (limited to 'nixos/modules/virtualisation')
-rw-r--r--nixos/modules/virtualisation/google-compute-config.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/virtualisation/google-compute-config.nix b/nixos/modules/virtualisation/google-compute-config.nix
index 61bced598620..41fbf4702e86 100644
--- a/nixos/modules/virtualisation/google-compute-config.nix
+++ b/nixos/modules/virtualisation/google-compute-config.nix
@@ -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";