14 lines
214 B
Nix
14 lines
214 B
Nix
{ core, ... }:
|
|
{ secret, vault, ... } @ lib:
|
|
let
|
|
inherit(core) set;
|
|
in
|
|
{
|
|
deepSeqAll
|
|
= set.mapValues
|
|
(
|
|
module:
|
|
({ ... }: module)
|
|
)
|
|
lib;
|
|
} |