Add java files

This commit is contained in:
Florian RICHER 2024-10-10 20:34:03 +02:00
parent a4d7c3744d
commit 776e8e5c16
9 changed files with 241 additions and 0 deletions

24
flake.nix Normal file
View file

@ -0,0 +1,24 @@
{
description = "Portfolio hugo configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachSystem flake-utils.lib.allSystems (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShells = {
default = pkgs.mkShell {
packages = with pkgs; [
jdk23 # When available
maven
];
};
};
});
}