feat(nix/prog/pass): add pass with gnupg

This commit is contained in:
Dmitriy Pleshevskiy 2022-04-17 00:35:27 +03:00
parent afcb6c16b2
commit 593c07eb66

View file

@ -49,6 +49,7 @@ in
xh # friendly and fast tool for sending HTTP requests xh # friendly and fast tool for sending HTTP requests
fd # a simple, fast and user-friendly alternative to find fd # a simple, fast and user-friendly alternative to find
bat # a cat clone with syntax highlighting and git integration bat # a cat clone with syntax highlighting and git integration
pass # cli password manager
# haskell # haskell
stylish-haskell # formatter stylish-haskell # formatter
@ -60,9 +61,16 @@ in
librewolf # a fork of firefox, focused on privacy, security and freedom librewolf # a fork of firefox, focused on privacy, security and freedom
]; ];
home.sessionVariables = { home.sessionVariables =
EDITOR = "nvim"; let
}; pass_data_dir = "${config.home.sessionVariables.XDG_DATA_HOME}/pass";
in
{
EDITOR = "nvim";
# for 'pass' tool
PASSWORD_STORE_DIR = "${pass_data_dir}/store";
PASSWORD_STORE_EXTENSIONS_DIR = "${pass_data_dir}/extensions";
};
xsession = { xsession = {
enable = true; enable = true;
@ -97,9 +105,14 @@ in
inactiveInterval = 5; inactiveInterval = 5;
}; };
services.gpg-agent.enable = true;
# Let Home Manager install and manage itself. # Let Home Manager install and manage itself.
programs.home-manager.enable = true; programs.home-manager.enable = true;
# used for pass
programs.gpg.enable = true;
# enable z shell # enable z shell
programs.zsh = { programs.zsh = {
enable = true; enable = true;