feat(nix/prog/pass): add pass with gnupg
This commit is contained in:
parent
afcb6c16b2
commit
593c07eb66
1 changed files with 16 additions and 3 deletions
15
nix/home.nix
15
nix/home.nix
|
@ -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,8 +61,15 @@ 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 =
|
||||||
|
let
|
||||||
|
pass_data_dir = "${config.home.sessionVariables.XDG_DATA_HOME}/pass";
|
||||||
|
in
|
||||||
|
{
|
||||||
EDITOR = "nvim";
|
EDITOR = "nvim";
|
||||||
|
# for 'pass' tool
|
||||||
|
PASSWORD_STORE_DIR = "${pass_data_dir}/store";
|
||||||
|
PASSWORD_STORE_EXTENSIONS_DIR = "${pass_data_dir}/extensions";
|
||||||
};
|
};
|
||||||
|
|
||||||
xsession = {
|
xsession = {
|
||||||
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue