From 487b79d71f033f2beb9344e91d4363a74b59775e Mon Sep 17 00:00:00 2001 From: "Alexander \"PapaTutuWawa" Date: Thu, 29 Jul 2021 22:43:29 +0200 Subject: [PATCH] firefox: I forgot MOZ_USE_WAYLAND --- modules/programs/firefox/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/programs/firefox/default.nix b/modules/programs/firefox/default.nix index bf6d8f6..5877455 100644 --- a/modules/programs/firefox/default.nix +++ b/modules/programs/firefox/default.nix @@ -7,10 +7,12 @@ # Deploy a Firefox policy to set the search engine and do some other things etc."firefox/policies/policies.json".source = ./policies.json; - sessionVariables = { + variables = { # TODO: Use pam_environment once I figure out how to enable it. - # Enable multi-touch and stuff + # Enable multi-touch... "MOZ_USE_XINPUT2" = "1"; + # ... and Wayland + "MOZ_USE_WAYLAND" = "1"; }; };