From 8dcc59d4819ec8ca2d26e7984ceb9437419e85d4 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Wed, 8 Feb 2023 22:02:22 +0000 Subject: [PATCH] flake: bump inputs And migrate firefox extensions configuration to the profile-specific format. --- home/firefox/default.nix | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/home/firefox/default.nix b/home/firefox/default.nix index 8537aab..61c8d64 100644 --- a/home/firefox/default.nix +++ b/home/firefox/default.nix @@ -63,21 +63,21 @@ in "signon.rememberSignons" = false; # Disable built-in password manager "ui.systemUsesDarkTheme" = true; # Dark mode }; + + extensions = with pkgs.nur.repos.rycee.firefox-addons; ([ + bitwarden + consent-o-matic + form-history-control + reddit-comment-collapser + reddit-enhancement-suite + refined-github + sponsorblock + ublock-origin + ] + ++ lib.optional (cfg.tridactyl.enable) tridactyl + ++ lib.optional (cfg.ff2mpv.enable) ff2mpv + ); }; }; - - extensions = with pkgs.nur.repos.rycee.firefox-addons; ([ - bitwarden - consent-o-matic - form-history-control - reddit-comment-collapser - reddit-enhancement-suite - refined-github - sponsorblock - ublock-origin - ] - ++ lib.optional (cfg.tridactyl.enable) tridactyl - ++ lib.optional (cfg.ff2mpv.enable) ff2mpv - ); }; }