chore: rebuild directory structure

This commit is contained in:
js0ny 2025-11-28 07:53:04 +00:00
parent d3ce236672
commit dbf71443c7
91 changed files with 6683 additions and 1 deletions

View file

@ -1,43 +0,0 @@
{
description = "Flake for environment building ILP CW";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = {
self,
nixpkgs,
}: {
devShells =
nixpkgs.lib.genAttrs [
"x86_64-linux"
"aarch64-darwin"
] (system: let
pkgs = import nixpkgs {
inherit system;
};
in {
default = pkgs.mkShell {
buildInputs = with pkgs; [
vscode-langservers-extracted
jdt-language-server
jless
jdk21
gradle
httpie
docker
docker-compose
newman
gron
fx
google-java-format
];
shellHook = ''
export JAVA_HOME=${pkgs.jdk21}
echo "Java: $(java --version | head -n 1)"
'';
};
});
};
}