24 lines
554 B
Nix
24 lines
554 B
Nix
|
{
|
||
|
lib,
|
||
|
inputs,
|
||
|
...
|
||
|
}: let
|
||
|
# Taken from https://github.com/gytis-ivaskevicius/flake-utils-plus/blob/master/lib/options.nix
|
||
|
inherit (lib) filterAttrs mapAttrs';
|
||
|
flakes = filterAttrs (name: value: (name != "self") && (value ? outputs)) inputs;
|
||
|
nixRegistry =
|
||
|
builtins.mapAttrs
|
||
|
(name: v: {flake = v;})
|
||
|
flakes;
|
||
|
in {
|
||
|
nix.registry = nixRegistry;
|
||
|
environment.etc =
|
||
|
mapAttrs'
|
||
|
(name: value: {
|
||
|
name = "nix/inputs/${name}";
|
||
|
value = {source = value.outPath;};
|
||
|
})
|
||
|
flakes;
|
||
|
nix.nixPath = ["/etc/nix/inputs"];
|
||
|
}
|