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