VirtManager : Add workaround for a gtk cursor bug.

This commit is contained in:
Dmitry Voronin 2024-03-29 14:54:59 +03:00
parent 5ddc6c9637
commit fbcd397a35
2 changed files with 8 additions and 2 deletions

View file

@ -1,4 +1,11 @@
{ ... }: { { pkgs, ... }: {
virtualisation.libvirtd.enable = true; virtualisation.libvirtd.enable = true;
programs.virt-manager.enable = true; programs.virt-manager.enable = true;
# HACK: Fixes bug: https://www.reddit.com/r/NixOS/comments/1afbjiu/i_get_a_nonetype_error_when_trying_to_launch_a_vm/
environment.systemPackages = with pkgs; [
# glib
gnome3.adwaita-icon-theme # default gnome cursors,
];
###
} }

View file

@ -10,7 +10,6 @@
isNormalUser = true; isNormalUser = true;
uid = 1000; uid = 1000;
extraGroups = [ extraGroups = [
"libvirtd"
"networkmanager" "networkmanager"
"video" "video"
]; ];