aboutsummaryrefslogtreecommitdiffstats
path: root/flake.nix
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 /flake.nix
parentfix: initial list of history in workspace mode (#1356) (diff)
downloadatuin-21f3f64ad5c306723b9029f87c52e42dbd34369c.zip
feat(nix): Add a nixpkgs overlay (#1357)
Diffstat (limited to '')
-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;
+ };
+ };
}