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

{ environment.systemPackages = with pkgs; [
    keepassx-community
    rofi-pass
    pass
    pwgen
  ];
}