summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/nix.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/nix.nix b/common/nix.nix
index ea5f04a..9780560 100644
--- a/common/nix.nix
+++ b/common/nix.nix
@@ -18,7 +18,7 @@ inputs: {
18 registry = lib.mapAttrs (_name: value: {flake = value;}) inputs; 18 registry = lib.mapAttrs (_name: value: {flake = value;}) inputs;
19 nixPath = 19 nixPath =
20 lib.mapAttrsToList 20 lib.mapAttrsToList
21 (name: value: "${name}=${value.flake}") 21 (name: _value: "${name}=flake:${name}")
22 (lib.filterAttrs 22 (lib.filterAttrs
23 (name: value: name != "self" && value.flake != null) 23 (name: value: name != "self" && value.flake != null)
24 config.nix.registry); 24 config.nix.registry);