summary refs log tree commit diff stats
path: root/modules
diff options
context:
space:
mode:
authorAlan Pearce2017-09-09 16:22:06 +0200
committerAlan Pearce2017-09-09 16:49:30 +0200
commit12be12c3130dfcb9190afe35a462e4ba2c850a31 (patch)
tree7ca90ac0387dfcb36e62c3e07cd89ad103d7d591 /modules
parenta992ae2e0100c761e5385b938d61a124aa7d503c (diff)
downloadnixos-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.nix8
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
+  ];
+}