aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitja Felicijan <m@mitjafelicijan.com>2023-07-10 04:01:16 +0200
committerMitja Felicijan <m@mitjafelicijan.com>2023-07-10 04:01:16 +0200
commitddd4ff8539f77e1920a0dca614fd4d44abacd57e (patch)
tree5f79de61f9201728610b310b0978a016eb26fc27
parentae2835e4181e5e9e6b9f65fdb59ed1b0eb11b848 (diff)
downloadmitjafelicijan.com-ddd4ff8539f77e1920a0dca614fd4d44abacd57e.tar.gz
Added nix shell config
-rw-r--r--shell.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..18d6c87
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,6 @@
1{ pkgs ? import <nixpkgs> {} }:
2 pkgs.mkShell {
3 nativeBuildInputs = with pkgs.buildPackages; [
4 go
5 ];
6}