diff options
| author | Patrick Jackson <patrick@jackson.dev> | 2023-10-29 12:27:52 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-29 18:27:52 +0000 |
| commit | 21f3f64ad5c306723b9029f87c52e42dbd34369c (patch) | |
| tree | 555a86b7aa7b66be7270dc7b8703759fbf88315c /flake.nix | |
| parent | fix: initial list of history in workspace mode (#1356) (diff) | |
| download | atuin-21f3f64ad5c306723b9029f87c52e42dbd34369c.zip | |
feat(nix): Add a nixpkgs overlay (#1357)
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -31,5 +31,10 @@ ]; RUST_SRC_PATH = "${pkgs.rustPlatform.rustLibSrc}"; }); - }); + }) + // { + overlays.default = final: prev: { + inherit (self.packages.${final.system}) atuin; + }; + }; } |
