From ef80cbac01e66847ac960967340ffbc9fae702e6 Mon Sep 17 00:00:00 2001 From: Soispha Date: Mon, 8 May 2023 20:05:16 +0200 Subject: Fix(system/libvirt): Comment useless options --- system/libvirtd/default.nix | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) (limited to 'system') 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; }; } -- cgit 1.4.1