From 21f3f64ad5c306723b9029f87c52e42dbd34369c Mon Sep 17 00:00:00 2001 From: Patrick Jackson Date: Sun, 29 Oct 2023 12:27:52 -0600 Subject: [PATCH] feat(nix): Add a nixpkgs overlay (#1357) --- flake.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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; + }; + }; }