home/home/passwords.nix

13 lines
320 B
Nix
Raw Normal View History

2022-06-14 02:00:46 +01:00
{pkgs, ...}: {
home.packages = with pkgs; [yubikey-manager];
programs.password-store = {
enable = true;
2022-06-14 02:00:46 +01:00
settings = {PASSWORD_STORE_DIR = "$HOME/.password-store";};
package = pkgs.pass.withExtensions (exts: [exts.pass-otp]);
};
2022-05-23 12:30:54 +01:00
programs.zsh.shellAliases = {
p = "pass";
pc = "pass -c";
};
}