1
mirror of https://github.com/wlcx/home.git synced 2026-03-10 16:03:12 +00:00
home/home/passwords.nix

16 lines
338 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [ yubikey-manager ];
programs.password-store = {
enable = true;
settings = {
PASSWORD_STORE_DIR = "$HOME/.password-store";
};
package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]);
};
programs.zsh.shellAliases = {
p = "pass";
pc = "pass -c";
};
}