summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-09-01 15:35:00 -0400
committerseth <[email protected]>2023-09-06 10:48:13 -0400
commit27bee5c6bc5ab8df93f2be20fc9e20ed6e71bd27 (patch)
tree2b1e8872f28aa51ca7c5a12ade51a3dca2de2bdf /shell.nix
initial commit
Diffstat (limited to 'shell.nix')
-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..c647106
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,6 @@
+{pkgs ? import <nixpkgs> {}}:
+pkgs.mkShell {
+ packages = with pkgs; [
+ stylua
+ ];
+}