Skip to content

Commit

Permalink
πŸ§‘β€πŸ’» add nix devshell
Browse files Browse the repository at this point in the history
  • Loading branch information
dudeofawesome committed May 16, 2024
1 parent 9d15402 commit 8c3c810
Show file tree
Hide file tree
Showing 3 changed files with 546 additions and 0 deletions.
27 changes: 27 additions & 0 deletions devenv.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{ pkgs, ... }: {
packages = with pkgs; [
fish
git
watchman
];

languages = {
javascript = {
enable = true;
package = pkgs.nodejs_20;
npm = {
enable = true;
install.enable = true;
};
};

java = {
enable = true;
jdk.package = pkgs.jdk;
};
};

enterShell = ''
fish; exit
'';
}
Loading

0 comments on commit 8c3c810

Please sign in to comment.