fix(firefox): silence configPath and pkgs.system deprecation warnings #18

Merged
lyrathorpe merged 1 commits from fix/firefox-config-warnings into main 2026-06-10 10:37:30 +01:00
+6 -1
View File
@@ -72,13 +72,18 @@
programs.firefox = { programs.firefox = {
enable = true; enable = true;
package = null; package = null;
# Keep the legacy profile location (~/.mozilla/firefox) -- that is where the
# system Firefox actually looks; pin it explicitly to silence the
# stateVersion<26.05 default-change warning (the new XDG path depends on
# Firefox's own profile support).
configPath = ".mozilla/firefox";
profiles.${username} = { profiles.${username} = {
id = 0; id = 0;
isDefault = true; isDefault = true;
extensions = { extensions = {
force = true; force = true;
packages = [ packages = [
inputs.firefox-addons.packages.${pkgs.system}.catppuccin-mocha-mauve inputs.firefox-addons.packages.${pkgs.stdenv.hostPlatform.system}.catppuccin-mocha-mauve
]; ];
}; };
settings = { settings = {