summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2017-07-14 16:28:25 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2017-07-14 16:28:25 +0200
commit8a35f751d1f20ba73cd4c478c6dfbc46db1ced34 (patch)
tree028a7850cf02ec4d2425f2ddd86f5ac8c681574d /nixos
parente4229bb3f8aac429995e34a789840d51abf051a1 (diff)
downloadnixlib-8a35f751d1f20ba73cd4c478c6dfbc46db1ced34.tar
nixlib-8a35f751d1f20ba73cd4c478c6dfbc46db1ced34.tar.gz
nixlib-8a35f751d1f20ba73cd4c478c6dfbc46db1ced34.tar.bz2
nixlib-8a35f751d1f20ba73cd4c478c6dfbc46db1ced34.tar.lz
nixlib-8a35f751d1f20ba73cd4c478c6dfbc46db1ced34.tar.xz
nixlib-8a35f751d1f20ba73cd4c478c6dfbc46db1ced34.tar.zst
nixlib-8a35f751d1f20ba73cd4c478c6dfbc46db1ced34.zip
nixos/spice-vdagentd: remove needless shell
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/misc/spice-vdagentd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/misc/spice-vdagentd.nix b/nixos/modules/services/misc/spice-vdagentd.nix
index f8133394ffd3..f322ba4cbd58 100644
--- a/nixos/modules/services/misc/spice-vdagentd.nix
+++ b/nixos/modules/services/misc/spice-vdagentd.nix
@@ -23,7 +23,7 @@ in
       '';
       serviceConfig = {
         Type = "forking";
-        ExecStart = "/bin/sh -c '${pkgs.spice-vdagent}/bin/spice-vdagentd'";
+        ExecStart = "${pkgs.spice-vdagent}/bin/spice-vdagentd";
       };
     };
   };