summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorquentin@aristote.fr <quentin@aristote.fr>2026-05-04 19:32:45 +0200
committerquentin@aristote.fr <quentin@aristote.fr>2026-05-04 19:32:45 +0200
commitdc5257ae3b4c5ea6e8d04c4aae303fd147449aa6 (patch)
tree3cddcbb2a1e046d93d2f8346f99e0c745754ddb4
parentd2d39384616fd038f737e2e334c5f18695ed478b (diff)
downloadprecision-3571-dc5257ae3b4c5ea6e8d04c4aae303fd147449aa6.tar.gz
precision-3571-dc5257ae3b4c5ea6e8d04c4aae303fd147449aa6.tar.bz2
precision-3571-dc5257ae3b4c5ea6e8d04c4aae303fd147449aa6.tar.xz
home: migrate firefox config folder
-rw-r--r--home/default.nix16
1 files changed, 15 insertions, 1 deletions
diff --git a/home/default.nix b/home/default.nix
index 2c45084..c0d1c51 100644
--- a/home/default.nix
+++ b/home/default.nix
@@ -1,4 +1,9 @@
-{ lib, pkgs, ... }:
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}:
{
personal = {
profiles = {
@@ -45,4 +50,13 @@
};
};
};
+
+ # You are currently using the legacy default (`".mozilla/firefox"`) because `home.stateVersion` is less than "26.05".
+ # To silence this warning and keep legacy behavior, set:
+ # programs.firefox.configPath = ".mozilla/firefox";
+ # To adopt the new default behavior, set:
+ programs.firefox.configPath = "${config.xdg.configHome}/mozilla/firefox";
+ # To migrate to the XDG path, move `~/.mozilla/firefox` to
+ # `$XDG_CONFIG_HOME/mozilla/firefox` and remove the old directory.
+ # Native messaging hosts are not moved by this option change.
}