From 08456bef7913f96f52312d61967a4bfe72a5b26d Mon Sep 17 00:00:00 2001 From: Jacob Bachmann Date: Thu, 25 Jan 2024 18:50:34 +0100 Subject: [PATCH] feat(virtualisation): add virtiofsd --- modules/virtualisation.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/modules/virtualisation.nix b/modules/virtualisation.nix index 3648bc6..c61b5d1 100644 --- a/modules/virtualisation.nix +++ b/modules/virtualisation.nix @@ -2,7 +2,10 @@ # virt-manager virtualisation.libvirtd.enable = true; - programs.dconf.enable = true; - environment.systemPackages = with pkgs; [ virt-manager ]; + programs = { + dconf.enable = true; + virt-manager.enable = true; + }; + environment.systemPackages = with pkgs; [ virtiofsd ]; }