1
0
Fork 0
puter/modules/pubkeys.nix

21 lines
313 B
Nix
Raw Normal View History

2024-12-30 22:52:20 +01:00
{
lib,
self,
...
2025-05-11 22:49:04 +02:00
}:
{
options.pubkeys =
let
inherit (lib) types;
in
2024-12-30 22:52:20 +01:00
lib.mkOption {
type = types.attrsOf (types.attrsOf types.str);
description = ''
Public keys.
'';
2025-05-18 01:08:10 +02:00
readOnly = true;
2024-12-30 22:52:20 +01:00
};
2025-01-04 23:51:35 +01:00
config.pubkeys = lib.mkForce (import (self + /pubkeys.nix));
2024-12-30 22:52:20 +01:00
}