zaneyos/config/system/vm.nix

7 lines
151 B
Nix
Raw Normal View History

2024-01-29 17:16:18 +01:00
{ pkgs, config, lib, cpuType, ... }:
lib.mkIf ("${cpuType}" == "vm") {
services.qemuGuest.enable = true;
services.spice-vdagentd.enable = true;
}