Initial commit

This commit is contained in:
demenik
2025-12-01 18:24:34 +01:00
commit fc68fa5ce9
142 changed files with 6273 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
{
flake = {
template = builtins.readFile ./flake.nix;
placeholders = {
"0" = null;
};
};
flaketauri.template = builtins.readFile ./tauri.flake.nix;
flakeflutter.template = builtins.readFile ./flutter.flake.nix;
flakeags = {
template = builtins.readFile ./ags.flake.nix;
placeholders = {
"1" = "project-name";
"2" = "0.1.0";
"3" = "main.tsx";
"0" = null;
};
};
flakerust = {
template = builtins.readFile ./rust.flake.nix;
placeholders = {
"1" = "rust-app";
"2" = "0.1.0";
"3" = "A Rust application";
"0" = null;
};
};
flakebevy = {
template = builtins.readFile ./bevy.flake.nix;
placeholders = {
"1" = "bevy-app";
"2" = "0.1.0";
"3" = "A Bevy application";
};
};
flakemaven = {
template = builtins.readFile ./maven.flake.nix;
placeholders."0" = "25";
};
flakegradle = {
template = builtins.readFile ./gradle.flake.nix;
placeholders."0" = "25";
};
}