summary refs log tree commit diff stats
path: root/system
diff options
context:
space:
mode:
authorAlan Pearce2022-06-25 19:03:54 +0200
committerAlan Pearce2022-10-08 01:36:11 +0200
commit255713131022205a8a98b038d026bc7bf37dd1ee (patch)
tree6136a601e9353278372143e9203363b8c968a94a /system
parent5578f2e6a0214eb7f2d255d431aca5697315b720 (diff)
downloadnixfiles-255713131022205a8a98b038d026bc7bf37dd1ee.tar.lz
nixfiles-255713131022205a8a98b038d026bc7bf37dd1ee.tar.zst
nixfiles-255713131022205a8a98b038d026bc7bf37dd1ee.zip
Enable virtualisation on prefect using libvirtd
Diffstat (limited to 'system')
-rw-r--r--system/prefect.nix1
-rw-r--r--system/settings/services/virtualisation.nix19
2 files changed, 20 insertions, 0 deletions
diff --git a/system/prefect.nix b/system/prefect.nix
index eeac53a6..b007bf12 100644
--- a/system/prefect.nix
+++ b/system/prefect.nix
@@ -25,6 +25,7 @@
     ./settings/hardware/trezor.nix
     ./settings/services/samba.nix
     ./settings/services/syncthing.nix
+    ./settings/services/virtualisation.nix
     ./settings/services/zeroconf.nix
     ./settings/user-interface.nix
     ./settings/programs/base.nix
diff --git a/system/settings/services/virtualisation.nix b/system/settings/services/virtualisation.nix
new file mode 100644
index 00000000..828c70eb
--- /dev/null
+++ b/system/settings/services/virtualisation.nix
@@ -0,0 +1,19 @@
+{ config, pkgs, ... }:
+
+{
+  virtualisation.libvirtd = {
+    enable = true;
+    onBoot = "ignore";
+    onShutdown = "shutdown";
+    qemu = {
+      package = pkgs.qemu_kvm;
+      ovmf.enable = true;
+      runAsRoot = false;
+    };
+  };
+
+  environment.systemPackages = with pkgs; [
+    virtmanager
+    OVMF
+  ];
+}