mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
3ccb236c4b
Signed-off-by: Magic_RB <magic_rb@redalder.org>
15 lines
230 B
Nix
15 lines
230 B
Nix
{ lib, ... }:
|
|
with lib;
|
|
|
|
{
|
|
options = {
|
|
passwordHashes = mkOption {
|
|
description = ''
|
|
Password hashes.
|
|
'';
|
|
type = with types; attrsOf (oneOf [ str (attrsOf str) ] );
|
|
default = {};
|
|
};
|
|
};
|
|
}
|