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

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