Skip to content

Commit

Permalink
fix(vm): spice-agent service condition
Browse files Browse the repository at this point in the history
  • Loading branch information
xarvex committed Jun 21, 2024
1 parent b0dd4c1 commit 7a22d9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions host/botworks-virtualized/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
systemd.user.services.spice-agent = {
enable = true;
wantedBy = [ "graphical-session.target" ];
serviceConfig.ExecStart = "${lib.getExe' pkgs.spice-vdagent "spice-vdagent"} -x ";
serviceConfig.ExecStart = "${lib.getExe' pkgs.spice-vdagent "spice-vdagent"} -x";
unitConfig = {
ConditionVirtualization = "botworks-virtualized";
ConditionVirtualization = "vm";
Description = [ "Spice guest session agent" ];
After = [ "graphical-session-pre.target" ];
PartOf = [ "graphical-session.target" ];
Expand Down

0 comments on commit 7a22d9a

Please sign in to comment.