From fbc2d08de8bfb4fc900c3297de0467c47fb4cd3e Mon Sep 17 00:00:00 2001 From: osbm Date: Wed, 5 Nov 2025 09:27:56 +0300 Subject: [PATCH] dont need with statement for this one func --- modules/home-manager/programs/firefox.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/home-manager/programs/firefox.nix b/modules/home-manager/programs/firefox.nix index 6c289d7..d97aef2 100644 --- a/modules/home-manager/programs/firefox.nix +++ b/modules/home-manager/programs/firefox.nix @@ -45,7 +45,6 @@ # DisplayMenuBar = "default-off"; # alternatives: "always", "never" or "default-on" # SearchBar = "unified"; # alternat ExtensionSettings = - with builtins; let extension = shortId: uuid: { name = uuid; @@ -55,7 +54,7 @@ }; }; in - listToAttrs [ + builtins.listToAttrs [ (extension "tree-style-tab" "treestyletab@piro.sakura.ne.jp") (extension "ublock-origin" "uBlock0@raymondhill.net") (extension "bitwarden-password-manager" "{446900e4-71c2-419f-a6a7-df9c091e268b}")