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