1
0
Fork 0
puter/common/pubkeys.nix

20 lines
290 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-01-04 23:51:35 +01:00
config.pubkeys = lib.mkForce (import (self + /pubkeys.nix));
2024-12-30 22:52:20 +01:00
}