From fb13347d2a02beae7822ccd28d539bad287a914a Mon Sep 17 00:00:00 2001 From: Klemens Nanni Date: Thu, 1 Oct 2020 19:32:48 +0200 Subject: [PATCH] nixos/plasma5: Enable browser integration This option is not documented anywhere and while it may be set in configuration.nix to enable integration, having it on by default when using both plasma and firefox is a great convenience; just like all other desktop environments do it already. --- nixos/modules/services/x11/desktop-managers/plasma5.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/services/x11/desktop-managers/plasma5.nix b/nixos/modules/services/x11/desktop-managers/plasma5.nix index 149f6cbb762..bb8325c105e 100644 --- a/nixos/modules/services/x11/desktop-managers/plasma5.nix +++ b/nixos/modules/services/x11/desktop-managers/plasma5.nix @@ -362,6 +362,8 @@ in # Update the start menu for each user that is currently logged in system.userActivationScripts.plasmaSetup = activationScript; + + nixpkgs.config.firefox.enablePlasmaBrowserIntegration = true; }) ];