mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-30 12:06:13 +01:00
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 = {};
|
||
|
};
|
||
|
};
|
||
|
}
|