nixos/qemu-guest-agent: pkgs.{kvm -> qemu} (#48293)

there is no top-level pkgs.kvm
This commit is contained in:
volth 2018-10-12 22:41:46 +00:00 committed by xeji
parent 0efb6e3e38
commit 0d44d639f6

View file

@ -25,7 +25,7 @@ in {
systemd.services.qemu-guest-agent = {
description = "Run the QEMU Guest Agent";
serviceConfig = {
ExecStart = "${pkgs.kvm.ga}/bin/qemu-ga";
ExecStart = "${pkgs.qemu.ga}/bin/qemu-ga";
Restart = "always";
RestartSec = 0;
};