mirror of
https://github.com/nix-community/home-manager.git
synced 2026-06-05 21:02:51 +00:00
15 lines
388 B
Nix
15 lines
388 B
Nix
{
|
|
home.stateVersion = "25.05"; # <= 25.11
|
|
programs.password-store = {
|
|
enable = true;
|
|
settings.PASSWORD_STORE_KEY = "12345678";
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileNotRegex home-path/etc/profile.d/hm-session-vars.sh \
|
|
'^export PASSWORD_STORE_DIR='
|
|
assertFileContains home-path/etc/profile.d/hm-session-vars.sh \
|
|
'export PASSWORD_STORE_KEY="12345678"'
|
|
'';
|
|
}
|