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

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

    python3Packages.keyring
  ];
}