summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/flake.nix b/flake.nix
index 86ed20f..e9256a7 100644
--- a/flake.nix
+++ b/flake.nix
@@ -5,18 +5,15 @@
(f: f != "flake.nix" && builtins.match ".*\\.nix" f != null)
(builtins.attrNames (builtins.readDir ./.));
- # Исправленная функция создания overlay
makeOverlay = file: {
name = builtins.replaceStrings [ ".nix" ] [ "" ] file;
value = inputs: (import (./. + "/${file}") {
-# inherit inputs final prev;
inherit inputs;
});
};
in {
overlays = builtins.listToAttrs (map makeOverlay nixFiles);
-# allOverlays = builtins.attrValues overlaysSet;
};
}