diff options
author | Brian Cully <bjc@spork.org> | 2025-03-08 12:06:09 -0500 |
---|---|---|
committer | Brian Cully <bjc@spork.org> | 2025-03-08 12:06:09 -0500 |
commit | 496fd9b1d8247e67cc830bd4e49f479d464a1d8a (patch) | |
tree | d9881eb3341ffbc428c1a51c9ca36329481f188f | |
parent | ddc2818c6a096db5ff4db91f6538bf829043e563 (diff) | |
download | chords-496fd9b1d8247e67cc830bd4e49f479d464a1d8a.tar.gz chords-496fd9b1d8247e67cc830bd4e49f479d464a1d8a.zip |
infra: initial infra
-rw-r--r-- | .envrc | 1 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | shell.nix | 11 |
3 files changed, 14 insertions, 0 deletions
@@ -0,0 +1 @@ +use nix diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1549931 --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +serve: + python -m http.server diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..8863b3e --- /dev/null +++ b/shell.nix @@ -0,0 +1,11 @@ +{ pkgs ? import <nixpkgs> {} }: + +pkgs.mkShellNoCC { + packages = with pkgs; [ + gnumake + python3 + typescript-language-server + ]; + + TMPDIR = "/tmp"; # lsp needs it +} |