From 38a650124cde9aeb0d4fcef0a3af597252f9f8f2 Mon Sep 17 00:00:00 2001 From: Don Harper Date: Thu, 28 Mar 2024 21:44:01 -0500 Subject: [PATCH] loki | enable kvm and gnome-boxes --- hosts/loki/default.nix | 1 + hosts/workstation/kvm.nix | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 hosts/workstation/kvm.nix 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 ]; +}