about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-05-08 20:05:16 +0200
committerSoispha <soispha@vhack.eu>2023-05-09 19:33:38 +0200
commitef80cbac01e66847ac960967340ffbc9fae702e6 (patch)
treedbcb035b7fc9beaf0d5bd2479d89b87b9562948f
parentFix(system): Import libvirt config (diff)
downloadnixos-config-ef80cbac01e66847ac960967340ffbc9fae702e6.tar.gz
nixos-config-ef80cbac01e66847ac960967340ffbc9fae702e6.zip
Fix(system/libvirt): Comment useless options
-rw-r--r--system/libvirtd/default.nix25
1 files changed, 14 insertions, 11 deletions
diff --git a/system/libvirtd/default.nix b/system/libvirtd/default.nix
index 33736dfa..1c3f840f 100644
--- a/system/libvirtd/default.nix
+++ b/system/libvirtd/default.nix
@@ -5,17 +5,20 @@
   ...
 }: {
   virtualisation = {
-    cores = 8;
-    diskSize = 25000;
-    useEFIBoot = true;
-    resolution = {
-      x = 1920;
-      y = 1080;
+    #    cores = 8;
+    #    diskSize = 25000;
+    #    useEFIBoot = true;
+    #    resolution = {
+    #      x = 1920;
+    #      y = 1080;
+    #    };
+    #    memorySize = 8024;
+    #    sharedDirectories = {}; # TODO add some
+    libvirtd = {
+      enable = true;
+      qemu = {
+        package = pkgs.qemu_full;
+      };
     };
-    memorySize = 8024;
-    sharedDirectories = {}; # TODO add some
-  };
-  virtialisation.libvirtd = {
-    enable = true;
   };
 }