lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

linuxPackages.hyperv-daemons: add path conditions for kvp and vss

+3 -5
-2
nixos/modules/virtualisation/hyperv-guest.nix
··· 56 56 systemd = { 57 57 packages = [ config.boot.kernelPackages.hyperv-daemons.lib ]; 58 58 59 - services.hv-vss.unitConfig.ConditionPathExists = [ "/dev/vmbus/hv_vss" ]; 60 - 61 59 targets.hyperv-daemons = { 62 60 wantedBy = [ "multi-user.target" ]; 63 61 };
+3 -3
pkgs/os-specific/linux/hyperv-daemons/default.nix
··· 73 73 buildCommand = '' 74 74 system=$lib/lib/systemd/system 75 75 76 - install -Dm444 ${service "fcopy" "file copy (FCOPY)" "hv_fcopy" } $system/hv-fcopy.service 77 - install -Dm444 ${service "kvp" "key-value pair (KVP)" "" } $system/hv-kvp.service 78 - install -Dm444 ${service "vss" "volume shadow copy (VSS)" "" } $system/hv-vss.service 76 + install -Dm444 ${service "fcopy" "file copy (FCOPY)" "hv_fcopy" } $system/hv-fcopy.service 77 + install -Dm444 ${service "kvp" "key-value pair (KVP)" "hv_kvp" } $system/hv-kvp.service 78 + install -Dm444 ${service "vss" "volume shadow copy (VSS)" "hv_vss" } $system/hv-vss.service 79 79 80 80 cat > $system/hyperv-daemons.target <<EOF 81 81 [Unit]