aboutsummaryrefslogtreecommitdiffhomepage
path: root/overlay.nix
diff options
context:
space:
mode:
Diffstat (limited to 'overlay.nix')
-rw-r--r--overlay.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/overlay.nix b/overlay.nix
deleted file mode 100644
index 4272d50..0000000
--- a/overlay.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-# You can use this file as a nixpkgs overlay. This is useful in the
-# case where you don't want to add the whole NUR namespace to your
-# configuration.
-
-self: super:
-let
- isReserved = n: n == "lib" || n == "overlays" || n == "modules";
- nameValuePair = n: v: {
- name = n;
- value = v;
- };
- nurAttrs = import ./default.nix { pkgs = super; };
-
-in
-builtins.listToAttrs (
- map (n: nameValuePair n nurAttrs.${n}) (
- builtins.filter (n: !isReserved n) (builtins.attrNames nurAttrs)
- )
-)