nix-config/modules2/password-store/settings.nix
Oliver Davies 6a12ea4b0e
All checks were successful
/ check (push) Successful in 1m34s
Move password-store configuration
2025-07-25 00:25:08 +01:00

7 lines
164 B
Nix

{
flake.modules.homeManager.base =
{ config, ... }:
{
programs.password-store.settings.PASSWORD_STORE_DIR = "${config.xdg.dataHome}/pass";
};
}