From 1f142f303d7dd6e6f3330a284f259d1fbc965f59 Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Sun, 18 Aug 2024 14:46:06 +0200 Subject: [PATCH] pinwheel: Enable `wayland` in `firefox` --- hosts/pinwheel/modules/firefox/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/pinwheel/modules/firefox/default.nix b/hosts/pinwheel/modules/firefox/default.nix index b3553a1..e0d6d43 100644 --- a/hosts/pinwheel/modules/firefox/default.nix +++ b/hosts/pinwheel/modules/firefox/default.nix @@ -113,5 +113,8 @@ in home.packages = [ ff ff-alex ]; }; - environment.variables.BROWSER = "${ff-alex}/bin/ff-alex $@"; + environment.variables = { + MOZ_ENABLE_WAYLAND=1; + BROWSER = "${ff-alex}/bin/ff-alex $@"; + }; }