diff options
Diffstat (limited to 'user/modules')
-rw-r--r-- | user/modules/passwords.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/user/modules/passwords.nix b/user/modules/passwords.nix new file mode 100644 index 00000000..b3fbddc3 --- /dev/null +++ b/user/modules/passwords.nix @@ -0,0 +1,10 @@ +{ config, pkgs, ... }: + +{ environment.systemPackages = with pkgs.unstable; [ + keepassx-community + rofi-pass + pass + pass-otp + pwgen + ]; +} |