diff options
| -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. } |
