nix-configurations/home/features/virtualization/qemu.nix

22 lines
426 B
Nix
Raw Normal View History

2023-02-05 13:36:38 +00:00
<<<<<<< HEAD
{ 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 ]; };
=======
2023-02-01 11:38:23 +00:00
{ pkgs, ... }:
{
home.packages = with pkgs; [
virt-manager
virtiofsd
];
2023-02-05 13:36:38 +00:00
>>>>>>> f7c149b (Various changes in home-config)
2023-02-01 11:38:23 +00:00
}