fix nix flake check warnings
This commit is contained in:
@@ -21,5 +21,8 @@ in
|
||||
};
|
||||
alias = gitAliases;
|
||||
};
|
||||
# The default value of `programs.git.signing.format` has changed from `"openpgp"` to `null`.
|
||||
# You are currently using the legacy default (`"openpgp"`) because `home.stateVersion` is less than "25.05".
|
||||
signing.format = "openpgp";
|
||||
};
|
||||
}
|
||||
|
||||
12
modules/home/programs/password-store/default.nix
Normal file
12
modules/home/programs/password-store/default.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ ... }:
|
||||
{
|
||||
# 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 = {
|
||||
PASSWORD_STORE_DIR = "$XDG_DATA_HOME/password-store";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user