{ description = "Provides nix flakes for development"; outputs = { self }: { templates = { default = self.templates.shell; shell = { path = ./shell; description = "A base devshell to build off of"; }; rust = { path = ./rust; description = "A standard Rust development environment"; }; bun = { path = ./bun; description = "Flake for making a bun project"; }; }; }; }