nix-config/modules/home-manager/terminal/pass.nix

19 lines
271 B
Nix
Raw Normal View History

{
config,
pkgs,
lib,
...
}: {
programs.password-store = {
enable = true;
};
home.packages = with pkgs; [
ripasso-cursive
];
2024-03-31 16:23:56 -05:00
programs.nushell.extraEnv = ''
$env.PASSWORD_STORE_DIR = ($env.XDG_DATA_HOME | path join "password-store")
'';
}