mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-12-03 12:03:09 +01:00
7 lines
151 B
Nix
7 lines
151 B
Nix
{ pkgs, config, lib, cpuType, ... }:
|
|
|
|
lib.mkIf ("${cpuType}" == "vm") {
|
|
services.qemuGuest.enable = true;
|
|
services.spice-vdagentd.enable = true;
|
|
}
|