summary refs log tree commit diff stats
path: root/user/settings/passwords.nix
blob: aef8d6f475198a0b0a5e1275f97299fb22601e63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, pkgs, ... }:

{
  home.packages = with pkgs.unstable; [
    keepassx-community
    rofi-pass
    pass-otp
    pwgen

    python3Packages.keyring
  ];
}