summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2017-09-09 16:22:06 +0200
committerAlan Pearce2017-09-09 16:49:30 +0200
commit12be12c3130dfcb9190afe35a462e4ba2c850a31 (patch)
tree7ca90ac0387dfcb36e62c3e07cd89ad103d7d591
parenta992ae2e0100c761e5385b938d61a124aa7d503c (diff)
downloadnixfiles-12be12c3130dfcb9190afe35a462e4ba2c850a31.tar.lz
nixfiles-12be12c3130dfcb9190afe35a462e4ba2c850a31.tar.zst
nixfiles-12be12c3130dfcb9190afe35a462e4ba2c850a31.zip
Add passwords module
-rw-r--r--modules/passwords.nix8
-rw-r--r--satoshipad.nix1
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";