2.home-manager/tests/modules/programs/password-store/old-default-path.nix

10 lines
271 B
Nix

{ config, ... }:
{
home.stateVersion = "25.05"; # <= 25.11
programs.password-store.enable = true;
nmt.script = ''
assertFileContains home-path/etc/profile.d/hm-session-vars.sh \
'export PASSWORD_STORE_DIR="${config.xdg.dataHome}/password-store"'
'';
}