1
0
forked from extern/nix-config

virtualization: Disable interception-tools inside vm

This fixes an issue where dual-function-keys would run on both the host
and the virtual machine, thus causing issues with the escape key.
This commit is contained in:
Donovan Glover 2023-08-01 12:08:36 -04:00
parent 7c429a374b
commit bf5ebed6c6
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -1,3 +1,5 @@
{ lib, ... }:
{
virtualisation.vmVariant = {
virtualisation = {
@ -21,5 +23,7 @@
environment.sessionVariables = {
WLR_NO_HARDWARE_CURSORS = "1";
};
services.interception-tools.enable = lib.mkForce false;
};
}