about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorAleksana <me@aleksana.moe>2024-05-16 16:11:37 +0800
committerGitHub <noreply@github.com>2024-05-16 16:11:37 +0800
commit770a6c6cf20c08ccef4b28f6524c78cd30d11cdf (patch)
tree28c12e75c8a067f41d7c48c8ae3d950d294bdad9 /nixos
parent78d2fbcd3a810489ca93c42eff7cfab3747aa420 (diff)
parentf303b593a283d631f2ff57d57b406e2820ac432b (diff)
Merge pull request #312144 from jcaesar/pr-5
nixos/firefox: fix use of listToAttrs
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/programs/firefox.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/programs/firefox.nix b/nixos/modules/programs/firefox.nix
index f698c3999dc1f..7e0dec57d2dac 100644
--- a/nixos/modules/programs/firefox.nix
+++ b/nixos/modules/programs/firefox.nix
@@ -287,7 +287,7 @@ in
         (_: value: { Value = value; Status = cfg.preferencesStatus; })
         cfg.preferences);
       ExtensionSettings = builtins.listToAttrs (builtins.map
-        (lang: builtins.nameValuePair
+        (lang: lib.attrsets.nameValuePair
           "langpack-${lang}@firefox.mozilla.org"
           {
             installation_mode = "normal_installed";