about summary refs log tree commit diff
path: root/machines/x220-gnome/pass.nix
blob: 4fb941050dc96e8339bc855f421fee27f6f797c4 (plain)
1
2
3
4
5
6
7
8
9
10
{ pkgs, ... }:
{
	environment.systemPackages = with pkgs; [
		pkgs.pass-wayland
	];

	environment.variables = {
		PASSWORD_STORE_DIR = "$XDG_DATA_HOME/password-store";
	};
}