zaneyos/config/system/vm.nix
2024-01-29 17:10:35 -06:00

8 lines
191 B
Nix

{ pkgs, config, lib, cpuType, ... }:
lib.mkIf ("${cpuType}" == "vm") {
services.qemuGuest.enable = true;
services.spice-vdagentd.enable = true;
services.spice-webdavd.enable = true;
}