bluetooth: trying to disable handsfree mode (wip) fonts: conform to new font pkg naming
17 lines
335 B
Nix
17 lines
335 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
virtualisation = {
|
|
libvirtd.enable = true;
|
|
waydroid.enable = true;
|
|
};
|
|
programs.virt-manager.enable = true;
|
|
#virtualisation.vmware.host.enable = true;
|
|
#virtualisation.virtualbox.host = {
|
|
# enable = true;
|
|
#};
|
|
users.users."${config.myUserName}".extraGroups = ["libvirtd"];
|
|
}
|