diff --git a/hosts/loki/default.nix b/hosts/loki/default.nix index 2c9c7f4..c34d83c 100644 --- a/hosts/loki/default.nix +++ b/hosts/loki/default.nix @@ -5,6 +5,7 @@ [ ./hardware-configuration.nix ../workstation + ../workstation/kvm.nix ../../home ../../home/gui ../wm diff --git a/hosts/workstation/kvm.nix b/hosts/workstation/kvm.nix new file mode 100644 index 0000000..5368517 --- /dev/null +++ b/hosts/workstation/kvm.nix @@ -0,0 +1,5 @@ +{ pkgs, inputs, ... }: +{ + virtualisation.libvirtd.enable = true; + home.packages = with pkgs; [ gnome.gnome-boxes ]; +}