dotfiles/nix/secret-lib/password-hashes.nix

15 lines
230 B
Nix
Raw Normal View History

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