summaryrefslogtreecommitdiff
path: root/overlays/compat.nix
diff options
context:
space:
mode:
authorLinnnus <[email protected]>2023-10-01 18:56:59 +0200
committerLinnnus <[email protected]>2023-10-01 18:56:59 +0200
commit280aa48893458f0ae980c87fed5e733373ccec9d (patch)
tree0f89bf52e846124db5c3b72430a5c2b98e49c312 /overlays/compat.nix
parent7451c6a93b42ad1ae4a1a95664c2d8a6bdb11f72 (diff)
Export pkgs and overlays
Diffstat (limited to 'overlays/compat.nix')
-rw-r--r--overlays/compat.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/overlays/compat.nix b/overlays/compat.nix
new file mode 100644
index 0000000..8874b52
--- /dev/null
+++ b/overlays/compat.nix
@@ -0,0 +1,13 @@
+# Returns a list of overlays such that this file can be used for the value of
+# nixpkgs-overlays in NIX_PATH.
+#
+# See: hosts/common.nix
+# See: https://nixos.org/manual/nixpkgs/stable/#sec-overlays-lookup
+
+let
+ overlays = import ./default.nix;
+in
+[
+ overlays.additions
+ overlays.modifications
+]