diff options
author | Alan Pearce | 2017-09-09 16:22:06 +0200 |
---|---|---|
committer | Alan Pearce | 2017-09-09 16:49:30 +0200 |
commit | 12be12c3130dfcb9190afe35a462e4ba2c850a31 (patch) | |
tree | 7ca90ac0387dfcb36e62c3e07cd89ad103d7d591 /modules | |
parent | a992ae2e0100c761e5385b938d61a124aa7d503c (diff) | |
download | nixos-configuration-12be12c3130dfcb9190afe35a462e4ba2c850a31.tar.lz nixos-configuration-12be12c3130dfcb9190afe35a462e4ba2c850a31.tar.zst nixos-configuration-12be12c3130dfcb9190afe35a462e4ba2c850a31.zip |
Add passwords module
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 0000000..8c9d7cf --- /dev/null +++ b/modules/passwords.nix @@ -0,0 +1,8 @@ +{ config, pkgs, ... }: + +{ environment.systemPackages = with pkgs; [ + keepassx-community + pass + pwgen + ]; +} |