diff options
| author | inyourwalls <inyourwalls@tutanota.com> | 2023-11-07 12:37:02 -0500 |
|---|---|---|
| committer | inyourwalls <inyourwalls@tutanota.com> | 2023-11-07 12:37:02 -0500 |
| commit | 86a919f530c7990eecf1b98c3151941f39c7d4eb (patch) | |
| tree | 862ea708d608cfc7a0fdccaddfc98cbf03dfc229 /flake.nix | |
setup basic dev environment
Diffstat (limited to '')
| -rw-r--r-- | flake.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..01369b6 --- /dev/null +++ b/flake.nix @@ -0,0 +1,17 @@ +{ + description = "Development environment for frank."; + + inputs.nixpkgs = { + url = "github:NixOS/nixpkgs/nixos-unstable"; + }; + + outputs = { self, nixpkgs }: { + devShells.x86_64-linux.default = let pkgs = nixpkgs.legacyPackages.x86_64-linux; + in pkgs.mkShell { + nativeBuildInputs = with pkgs.buildPackages; [ + openjdk17 + jdt-language-server + ]; + }; + }; +} |
