diff options
| author | quentin@aristote.fr <quentin@aristote.fr> | 2026-05-04 19:32:45 +0200 |
|---|---|---|
| committer | quentin@aristote.fr <quentin@aristote.fr> | 2026-05-04 19:32:45 +0200 |
| commit | dc5257ae3b4c5ea6e8d04c4aae303fd147449aa6 (patch) | |
| tree | 3cddcbb2a1e046d93d2f8346f99e0c745754ddb4 /home | |
| parent | d2d39384616fd038f737e2e334c5f18695ed478b (diff) | |
| download | precision-3571-dc5257ae3b4c5ea6e8d04c4aae303fd147449aa6.tar.gz precision-3571-dc5257ae3b4c5ea6e8d04c4aae303fd147449aa6.tar.bz2 precision-3571-dc5257ae3b4c5ea6e8d04c4aae303fd147449aa6.tar.xz | |
home: migrate firefox config folder
Diffstat (limited to 'home')
| -rw-r--r-- | home/default.nix | 16 |
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. } |
