nix-config/modules/password-store/settings.nix

8 lines
164 B
Nix
Raw Normal View History

2025-07-25 00:25:08 +01:00
{
flake.modules.homeManager.base =
{ config, ... }:
{
programs.password-store.settings.PASSWORD_STORE_DIR = "${config.xdg.dataHome}/pass";
};
}