VirtManager : Add workaround for a gtk cursor bug.
This commit is contained in:
parent
5ddc6c9637
commit
fbcd397a35
|
@ -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,
|
||||||
|
];
|
||||||
|
###
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
uid = 1000;
|
uid = 1000;
|
||||||
extraGroups = [
|
extraGroups = [
|
||||||
"libvirtd"
|
|
||||||
"networkmanager"
|
"networkmanager"
|
||||||
"video"
|
"video"
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue