zaneyos/config/system/vm.nix
2024-01-29 10:16:18 -06:00

7 lines
151 B
Nix

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