{ description = "Flake Template Hell"; inputs = { nixpkgs.url = "github:nixos/nixpkgs/release-24.05"; }; outputs = _: { templates = { "python" = { path = ./templates/python; description = "python flake template"; }; "go" = { path = ./templates/go; description = "go flake template"; }; "rust" = { path = ./templates/rust; description = "rust flake template"; }; }; }; }