nixos/oink: fix eval

This commit is contained in:
éclairevoyant 2025-11-27 00:42:41 -05:00
commit 8188520c42
No known key found for this signature in database
GPG key ID: E3813AEAA02DB54B

View file

@ -12,7 +12,10 @@ let
lib.mapAttrs' (k: v: lib.nameValuePair (lib.toLower k) v) attrs
);
oinkConfig = makeOinkConfig {
global = cfg.settings;
global = removeAttrs cfg.settings [
"apiKey"
"secretApiKey"
];
domains = cfg.domains;
};
in