2021-04-11 00:25:36 +02:00
|
|
|
{ config, lib, options, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.magic_rb;
|
|
|
|
system = pkgs.stdenv.system;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.magic_rb = {
|
|
|
|
pkgs = mkOption {
|
|
|
|
description = "legacyPkgs from pin";
|
|
|
|
type = with types; attrsOf attrs;
|
|
|
|
readOnly = true;
|
|
|
|
};
|
|
|
|
pins = mkOption {
|
|
|
|
description = "nix things to pin into the PATH and registry";
|
|
|
|
type = with types; attrsOf attrs;
|
|
|
|
};
|
|
|
|
config = mkOption {
|
|
|
|
description = "Options to pass to all nixpks.";
|
|
|
|
type = types.attrs;
|
|
|
|
default = {};
|
|
|
|
};
|
|
|
|
overlays = mkOption {
|
|
|
|
description = "Overlays which should be loaded for all versions of nixpkgs";
|
|
|
|
type = with types; attrsOf unspecified;
|
2021-09-14 21:59:21 +02:00
|
|
|
default = {};
|
2021-04-11 00:25:36 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkMerge [
|
|
|
|
(optionalAttrs
|
|
|
|
(options ? "nix") {
|
|
|
|
nix = {
|
|
|
|
registry = mapAttrs (_: v: {
|
|
|
|
flake = v;
|
|
|
|
}) cfg.pins;
|
2022-04-18 23:19:34 +02:00
|
|
|
# nixPath = mapAttrsToList (n: v: "${n}=${v}") cfg.pins;
|
2021-04-11 00:25:36 +02:00
|
|
|
};
|
|
|
|
})
|
|
|
|
(optionalAttrs
|
|
|
|
(options ? "nixpkgs")
|
|
|
|
{
|
|
|
|
nixpkgs.config = cfg.config;
|
|
|
|
nixpkgs.overlays = mapAttrsToList (_: v: v) cfg.overlays;
|
|
|
|
})
|
|
|
|
{
|
|
|
|
|
|
|
|
magic_rb.pkgs =
|
|
|
|
mapAttrs
|
|
|
|
(n: v: import v {
|
|
|
|
inherit system;
|
|
|
|
config = cfg.config;
|
|
|
|
overlays = (mapAttrsToList (_: v: v) cfg.overlays);
|
|
|
|
})
|
|
|
|
(filterAttrs (n: v: builtins.hasAttr "legacyPackages" v) cfg.pins);
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|