Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
632 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
config,
pkgs,
lib,
...
}:
let
cfg = config.services.spice-vdagentd;
in
{
options = {
services.spice-vdagentd = {
enable = lib.mkEnableOption "Spice guest vdagent daemon";
};
};
config = lib.mkIf cfg.enable {
environment.systemPackages = [ pkgs.spice-vdagent ];
systemd.services.spice-vdagentd = {
description = "spice-vdagent daemon";
wantedBy = [ "graphical.target" ];
preStart = ''
mkdir -p "/run/spice-vdagentd/"
'';
serviceConfig = {
Type = "forking";
ExecStart = "${pkgs.spice-vdagent}/bin/spice-vdagentd";
};
};
};
}