about summary refs log tree commit diff
path: root/nix/hosts/caladan/overlay.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/hosts/caladan/overlay.nix')
-rw-r--r--nix/hosts/caladan/overlay.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/nix/hosts/caladan/overlay.nix b/nix/hosts/caladan/overlay.nix
new file mode 100644
index 0000000..a96e3f3
--- /dev/null
+++ b/nix/hosts/caladan/overlay.nix
@@ -0,0 +1,18 @@
+{ ... }:
+
+{
+  nixpkgs = {
+    overlays = [
+      (self: super: {
+        # helix-2303 = self.callPackage ../../pkgs/helix-2303 { };
+        # r2 = self.callPackage ../../pkgs/radare2-5.8.4 { };
+        # ansel = self.callPackage ../../pkgs/ansel { };
+        # typst = self.callPackage ../pkgs/radare2-5.8.4 { };
+      })
+    ];
+    config = {
+      allowUnfree = true;
+      allowBroken= true;
+    };
+  };
+}