A nix flake that wrap Godot with the Android runtime and Gradle (VR ready).
Create a file flake.nix at the root of your project, you can then enter the development environment using nix develop.
{
description = "Example usage of nix-godot-android";
inputs.nix-godot-android.url = "github:jahkosha/nix-godot-android";
inputs.nixpkgs.url = "nixpkgs/nixos-unstable";
outputs = { self, nixpkgs, nix-godot-android }: {
devShells.x86_64-linux.default = nix-godot-android.devShells.x86_64-linux.default;
};
}