nixos/home/virt-manager/nixos.nix

9 lines
151 B
Nix
Raw Normal View History

{ pkgs
, lib
, config
, ... }: with lib; let
2024-01-27 22:14:03 +08:00
gui = with config.global.gpu; enable && session;
in mkIf gui {
programs.virt-manager.enable = true;
}