Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve Build Instructions 2: Electric Boogaloo #637

Merged
merged 4 commits into from
Jan 4, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: add shell.nix
Signed-off-by: seth <getchoo@tuta.io>
  • Loading branch information
getchoo committed Jan 3, 2025
commit 388fa312bea94f44d227b1e88a87a8403691f73f
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
];
}