dotfiles/nix/secret-lib/password-hashes.nix
Magic_RB 3ccb236c4b
Remove all semi-secret things
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2021-08-19 18:26:06 +02:00

15 lines
230 B
Nix

{ lib, ... }:
with lib;
{
options = {
passwordHashes = mkOption {
description = ''
Password hashes.
'';
type = with types; attrsOf (oneOf [ str (attrsOf str) ] );
default = {};
};
};
}