loki | enable kvm and gnome-boxes

This commit is contained in:
Don Harper 2024-03-28 21:44:01 -05:00
parent 840e11b468
commit 38a650124c
2 changed files with 6 additions and 0 deletions

View file

@ -5,6 +5,7 @@
[ [
./hardware-configuration.nix ./hardware-configuration.nix
../workstation ../workstation
../workstation/kvm.nix
../../home ../../home
../../home/gui ../../home/gui
../wm ../wm

View file

@ -0,0 +1,5 @@
{ pkgs, inputs, ... }:
{
virtualisation.libvirtd.enable = true;
home.packages = with pkgs; [ gnome.gnome-boxes ];
}