This repository has been archived on 2025-03-05. You can view files and clone it, but cannot push or open issues or pull requests.
2023-02-05 14:51:12 +01:00

14 lines
276 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let cfg = config.features.virtualization.qemu;
in {
options.features.virtualization.qemu.enable =
mkEnableOption "install qemu tools";
config =
mkIf cfg.enable { home.packages = with pkgs; [ virt-manager virtiofsd ]; };
}