Files
gooberos/modules/development/virt-manager.nix

11 lines
226 B
Nix
Raw Normal View History

2026-03-30 00:20:36 +02:00
{ config, lib, ... }:
let
hasGui = config.services.dbus.implementation == "dbus";
in
{
config = lib.mkIf hasGui
{
programs.virt-manager.enable = true;
virtualisation.libvirtd.enable = true;
};
}