Skip to content

Commit

Permalink
feat: add shell.nix
Browse files Browse the repository at this point in the history
Signed-off-by: seth <[email protected]>
  • Loading branch information
getchoo committed Jan 3, 2025
1 parent 3224c80 commit 388fa31
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
pkgs ? import <nixpkgs> {
inherit system;
config = { };
overlays = [ ];
},
system ? builtins.currentSystem,
}:

pkgs.mkShellNoCC {
packages = with pkgs; [
# Node tools
nodejs
corepack
nrr

# Language servers
astro-language-server
typescript-language-server
nil

# Nix tools
deadnix
nixfmt-rfc-style
statix
];
}

0 comments on commit 388fa31

Please sign in to comment.