cleanup
This commit is contained in:
parent
29f54e7a5c
commit
5239ad4550
12 changed files with 89 additions and 14 deletions
17
common/pubkeys.nix
Normal file
17
common/pubkeys.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
lib,
|
||||
self,
|
||||
...
|
||||
}: {
|
||||
options.pubkeys = let
|
||||
inherit (lib) types;
|
||||
in
|
||||
lib.mkOption {
|
||||
type = types.attrsOf (types.attrsOf types.str);
|
||||
description = ''
|
||||
Public keys.
|
||||
'';
|
||||
};
|
||||
|
||||
config.pubkeys = import self + /pubkeys.nix;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue