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 | |
parent | a992ae2e0100c761e5385b938d61a124aa7d503c (diff) | |
download | nixfiles-12be12c3130dfcb9190afe35a462e4ba2c850a31.tar.lz nixfiles-12be12c3130dfcb9190afe35a462e4ba2c850a31.tar.zst nixfiles-12be12c3130dfcb9190afe35a462e4ba2c850a31.zip |
Add passwords module
-rw-r--r-- | modules/passwords.nix | 8 | ||||
-rw-r--r-- | satoshipad.nix | 1 |
2 files changed, 9 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 + ]; +} diff --git a/satoshipad.nix b/satoshipad.nix index f3b2d79c..6c8d6d34 100644 --- a/satoshipad.nix +++ b/satoshipad.nix @@ -27,6 +27,7 @@ ./modules/javascript.nix ./modules/satoshipay.nix ./modules/accounting.nix + ./modules/passwords.nix ]; networking.hostName = "satoshipad"; |