From 31b4ed7a7ee3fe906007d02a10ed6dc820113c7f Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Sun, 25 Feb 2024 19:36:44 +0300 Subject: [PATCH] Firefox : Enable legacy profiles. --- .config/linux/system/module/common/Firefox.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.config/linux/system/module/common/Firefox.nix b/.config/linux/system/module/common/Firefox.nix index d642b06..be1230d 100644 --- a/.config/linux/system/module/common/Firefox.nix +++ b/.config/linux/system/module/common/Firefox.nix @@ -1,4 +1,6 @@ -{ pkgs, ... }: { +{ pkgs, environment, ... }: { + # Disable profile switching on rebuild. + environment.variables.MOZ_LEGACY_PROFILES = "1"; programs.firefox = { enable = true; package = pkgs.firefox-esr;