aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--shell.nix7
2 files changed, 8 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index ea8c4bf..7cf056f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
/target
+test.png
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..5b9ce6d
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,7 @@
+{ pkgs ? import <nixpkgs> {} }:
+
+pkgs.mkShell {
+ buildInputs = with pkgs; [
+ cargo gcc rls clippy
+ ];
+}