mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-12-02 03:23:08 +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;
|
||
|
}
|