aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;
+ };
+ };
}