global/nix: rename self to universe in registry

This commit is contained in:
Infinidoge 2023-09-26 16:45:33 -04:00
parent fcbdcce7fa
commit 3ccf76d134

View file

@ -28,7 +28,7 @@ with lib;
let
flakes = filterAttrs (n: v: v ? outputs) inputs;
in
(builtins.mapAttrs (_n: v: { flake = v; }) flakes)
(mapAttrs' (n: v: { name = if n == "self" then "universe" else n; value = { flake = v; }; }) flakes)
// {
nixpkgs-git = {
exact = false;