1
0
Fork 0
puter/modules/pubkeys.nix
2025-05-18 01:08:10 +02:00

20 lines
313 B
Nix

{
lib,
self,
...
}:
{
options.pubkeys =
let
inherit (lib) types;
in
lib.mkOption {
type = types.attrsOf (types.attrsOf types.str);
description = ''
Public keys.
'';
readOnly = true;
};
config.pubkeys = lib.mkForce (import (self + /pubkeys.nix));
}