Skip to content

Commit

Permalink
Add nix
Browse files Browse the repository at this point in the history
  • Loading branch information
rainbowdashlabs authored and renovate[bot] committed Jun 6, 2024
1 parent bf6c17e commit 4a140d6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use nix
11 changes: 11 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{ pkgs ? import <nixpkgs> {}, ... }:

let
jdk = pkgs.jdk21;
gradle= pkgs.gradle.override { java = jdk; };
in
pkgs.mkShell
{
packages = with pkgs; [jdk gradle];
}

0 comments on commit 4a140d6

Please sign in to comment.