summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Jackson <patrick@jackson.dev>2023-10-29 12:27:52 -0600
committerGitHub <noreply@github.com>2023-10-29 18:27:52 +0000
commit21f3f64ad5c306723b9029f87c52e42dbd34369c (patch)
tree555a86b7aa7b66be7270dc7b8703759fbf88315c
parent57a8db13c23bb22161c27f447227cd24670ff2a2 (diff)
feat(nix): Add a nixpkgs overlay (#1357)
-rw-r--r--flake.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index b2b05fd8..de77cbf1 100644
--- a/flake.nix
+++ b/flake.nix
@@ -31,5 +31,10 @@
];
RUST_SRC_PATH = "${pkgs.rustPlatform.rustLibSrc}";
});
- });
+ })
+ // {
+ overlays.default = final: prev: {
+ inherit (self.packages.${final.system}) atuin;
+ };
+ };
}