about summary refs log tree commit diff
path: root/machines/x220-gnome/pass.nix
blob: c781746e55e0867223934464e82fa38d16fce03c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ pkgs, ... }:
{
	environment.systemPackages = with pkgs; [
		pkgs.pass-wayland
	];
	
	programs.browserpass.enable = true;

	programs.gnupg.agent = {
		enable = true;
		pinentryPackage = pkgs.pinentry-gnome3;
		enableSSHSupport = true;
	};

	environment.variables = {
		PASSWORD_STORE_DIR = "$HOME/.local/share/password-store";
	};
}