WIP mobile, broken build

This commit is contained in:
Henry Hiles 2025-07-12 18:21:49 -04:00
commit 4a03eb9193
No known key found for this signature in database
14 changed files with 95 additions and 82 deletions

View file

@ -1,21 +0,0 @@
{
inputs,
pkgs,
...
}: {
wrappers.agenix = {
basePackage = inputs.agenix-cli.packages.${pkgs.system}.default;
env.AGENIX_ROOT.value = let
path = ".agenix.toml";
in
pkgs.writeTextDir path (builtins.readFile (pkgs.writers.writeTOML path {
paths = [
{
glob = "**";
identities = import ../../secrets/keys.nix;
}
];
}));
};
}