mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-03 15:41:02 +01:00
10 lines
271 B
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"'
|
|
'';
|
|
}
|