mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-12-01 19:13:09 +01:00
9 lines
233 B
Nix
9 lines
233 B
Nix
{ pkgs, config, lib, ... }:
|
|
|
|
let inherit (import ../../options.nix) cpuType; in
|
|
lib.mkIf ("${cpuType}" == "vm") {
|
|
services.qemuGuest.enable = true;
|
|
services.spice-vdagentd.enable = true;
|
|
services.spice-webdavd.enable = true;
|
|
}
|