10 lines
578 B
Nix
Executable File
10 lines
578 B
Nix
Executable File
{
|
|
# The default value of `programs.password-store.settings` has changed from `{ PASSWORD_STORE_DIR = "$XDG_DATA_HOME/password-store"; }` to `{ }`.
|
|
# You are currently using the legacy default (`{ PASSWORD_STORE_DIR = "$XDG_DATA_HOME/password-store"; }`) because `home.stateVersion` is less than "25.11".
|
|
# To silence this warning and keep legacy behavior, set:
|
|
# programs.password-store.settings = { PASSWORD_STORE_DIR = "$XDG_DATA_HOME/password-store"; };
|
|
programs.password-store = {
|
|
settings = { };
|
|
};
|
|
}
|