feat: Add a trivial lib

This commit is contained in:
Tom Hubrecht 2024-11-19 15:56:20 +01:00
parent b9cb5d6f94
commit 4d2e4e0488
Signed by: thubrecht
SSH key fingerprint: SHA256:CYNvFo44Ar9qCNnWNnvJVhs0QXO9AZjOLlPeWcSij3Q

View file

@ -61,4 +61,9 @@ in
{
shellHook = project.config.installationScript;
};
lib = rec {
expr = repr: "\${{ ${repr} }}";
secret = name: expr "secrets.${name}";
};
}