about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--users/flokli/archeology/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/users/flokli/archeology/default.nix b/users/flokli/archeology/default.nix
index f5d7ae3fc3..d2e3ddc014 100644
--- a/users/flokli/archeology/default.nix
+++ b/users/flokli/archeology/default.nix
@@ -9,4 +9,9 @@ depot.nix.readTree.drvTargets {
     makeWrapper ${(pkgs.writers.writeRust "parse-bucket-logs-unwrapped" {} ./parse_bucket_logs.rs)} $out/bin/archeology-parse-bucket-logs \
       --prefix PATH : ${pkgs.lib.makeBinPath [ pkgs.clickhouse ]}
   '';
+
+  shell = pkgs.mkShell {
+    name = "archeology-shell";
+    packages = with pkgs; [ clickhouse rust-analyzer rustc rustfmt ];
+  };
 }