From 3ccf76d13458e3de2c185ba4ab6e4f82d7d14c38 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Tue, 26 Sep 2023 16:45:33 -0400 Subject: [PATCH] global/nix: rename self to universe in registry --- modules/global/nix.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/global/nix.nix b/modules/global/nix.nix index 8466113..db7e03c 100644 --- a/modules/global/nix.nix +++ b/modules/global/nix.nix @@ -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;