Unverified Commit e8245848 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

nixos/oink: fix eval (#465502)

parents b5a17e67 8188520c
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -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