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

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