diff options
author | lassulus <lassulus@lassul.us> | 2017-07-21 11:04:26 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2017-07-21 11:04:26 +0200 |
commit | 81bb5cf5166c5470527532ec8ba7c6a2bf1d5134 (patch) | |
tree | 41bfc366924a919f710d06bb2e6603f410981dc6 /krebs | |
parent | 8bfcf85531c4b8455c301504ccd74f95487e86d0 (diff) |
krebs: add missing secret-passwords.nix
Diffstat (limited to 'krebs')
-rw-r--r-- | krebs/2configs/secret-passwords.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/krebs/2configs/secret-passwords.nix b/krebs/2configs/secret-passwords.nix new file mode 100644 index 000000000..5d265eba6 --- /dev/null +++ b/krebs/2configs/secret-passwords.nix @@ -0,0 +1,6 @@ +{ ... }: with import <stockholm/lib>; +{ + users.extraUsers = + mapAttrs (_: h: { hashedPassword = h; }) + (import <secrets/hashedPasswords.nix>); +} |