mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 19:57:19 +00:00
use programs for the password store
This commit is contained in:
parent
508896aba5
commit
35da7752ca
2 changed files with 10 additions and 2 deletions
|
@ -8,7 +8,6 @@ let
|
||||||
spoof-mac
|
spoof-mac
|
||||||
];
|
];
|
||||||
linux = with pkgs; [ ];
|
linux = with pkgs; [ ];
|
||||||
pass-extended = pkgs.pass.withExtensions (exts: [ exts.pass-genphrase exts.pass-otp exts.pass-import ]);
|
|
||||||
python-wp = pkgs.python310.withPackages (p: with p; [ setuptools pyaml requests latexify-py ]);
|
python-wp = pkgs.python310.withPackages (p: with p; [ setuptools pyaml requests latexify-py ]);
|
||||||
node-packages = with pkgs.nodePackages; [ bash-language-server prettier ];
|
node-packages = with pkgs.nodePackages; [ bash-language-server prettier ];
|
||||||
octave-wp = pkgs.octave.withPackages (p: with p; [ symbolic ]);
|
octave-wp = pkgs.octave.withPackages (p: with p; [ symbolic ]);
|
||||||
|
@ -86,7 +85,6 @@ in
|
||||||
nmap
|
nmap
|
||||||
octave-wp
|
octave-wp
|
||||||
openssh
|
openssh
|
||||||
pass-extended
|
|
||||||
plantuml
|
plantuml
|
||||||
poppler
|
poppler
|
||||||
pv
|
pv
|
||||||
|
|
|
@ -82,6 +82,16 @@
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
password-store = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.pass.withExtensions (exts: [ exts.pass-genphrase exts.pass-otp exts.pass-import ]);
|
||||||
|
settings = {
|
||||||
|
PASSWORD_STORE_DIR = "${config.home.homeDirectory}/.password-store";
|
||||||
|
PASSWORD_STORE_CLIP_TIME = "60";
|
||||||
|
PASSWORD_STORE_KEY = "48BD20833B6AE9AA";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
zoxide = {
|
zoxide = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableBashIntegration = true;
|
enableBashIntegration = true;
|
||||||
|
|
Loading…
Add table
Reference in a new issue