aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore4
-rw-r--r--shell.nix12
2 files changed, 15 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index e72bd03..d24fa31 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,6 @@
1launch.json 1launch.json
2/termsonic 2/termsonic
3termsonic.exe 3termsonic.exe
4errors.log \ No newline at end of file 4errors.log
5/.direnv
6/.envrc
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..7f5aaaa
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,12 @@
1let
2 pkgs = import <nixpkgs> {};
3in
4pkgs.mkShell {
5 packages = [
6 pkgs.go
7 pkgs.gotools
8 pkgs.gopls
9 pkgs.pkg-config
10 pkgs.alsa-lib
11 ];
12}