Radial tree + Forces

This commit is contained in:
Oxy8
2026-02-10 16:18:24 -03:00
parent d6d37d93d5
commit 022da71e6a
13 changed files with 200973 additions and 94 deletions

28
flake.nix Normal file
View File

@@ -0,0 +1,28 @@
{
description = "basic";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
};
outputs = { self, nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
config = { allowUnfree = true; };
};
myJdk = pkgs.openjdk11; # Simplified reference, usually aliases correctly
in
{
devShell.x86_64-linux = pkgs.mkShell {
packages = [
pkgs.vscode-fhs
pkgs.antigravity-fhs
pkgs.bashInteractive
];
};
};
}