diff options
author | Soispha <soispha@vhack.eu> | 2023-05-08 20:05:16 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-05-09 19:33:38 +0200 |
commit | ef80cbac01e66847ac960967340ffbc9fae702e6 (patch) | |
tree | dbcb035b7fc9beaf0d5bd2479d89b87b9562948f | |
parent | Fix(system): Import libvirt config (diff) | |
download | nixos-config-ef80cbac01e66847ac960967340ffbc9fae702e6.tar.gz nixos-config-ef80cbac01e66847ac960967340ffbc9fae702e6.zip |
Fix(system/libvirt): Comment useless options
-rw-r--r-- | system/libvirtd/default.nix | 25 |
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; }; } |