nixos/libvirtd: Don't use the --daemon flag now that we use the 'notify' service type

Changed files
+1 -1
nixos
modules
virtualisation
+1 -1
nixos/modules/virtualisation/libvirtd.nix
···
''; # */
serviceConfig = {
-
ExecStart = ''@${pkgs.libvirt}/sbin/libvirtd libvirtd --config "${configFile}" --daemon ${concatStringsSep " " cfg.extraOptions}'';
+
ExecStart = ''@${pkgs.libvirt}/sbin/libvirtd libvirtd --config "${configFile}" ${concatStringsSep " " cfg.extraOptions}'';
Type = "notify";
KillMode = "process"; # when stopping, leave the VMs alone
Restart = "on-failure";