mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-03 23:51:03 +01:00
9 lines
234 B
Nix
9 lines
234 B
Nix
{
|
|
home.stateVersion = "25.11"; # Or any other newer version
|
|
programs.password-store.enable = true;
|
|
|
|
nmt.script = ''
|
|
assertFileNotRegex home-path/etc/profile.d/hm-session-vars.sh \
|
|
'^export PASSWORD_STORE_DIR='
|
|
'';
|
|
}
|