2025-02-23 01:28:11 -05:00
|
|
|
{
|
|
|
|
description = "An opinionated collection of nix packages and templates to scaffold projects with.";
|
|
|
|
|
|
|
|
outputs = { ... }:
|
|
|
|
{
|
2025-06-25 01:35:01 -04:00
|
|
|
homeManagerModules = {
|
|
|
|
dev = import ./home/dev;
|
|
|
|
work = import ./home/work;
|
2025-06-25 03:54:37 -04:00
|
|
|
home = import ./home/home;
|
2025-06-25 01:35:01 -04:00
|
|
|
default = import ./home;
|
|
|
|
};
|
|
|
|
|
2025-02-23 01:28:11 -05:00
|
|
|
templates = {
|
|
|
|
|
|
|
|
godot-js = {
|
|
|
|
path = ./godot-js;
|
|
|
|
description = ''
|
|
|
|
Scaffolds a project using pkgs.godot with https://github.com/godotjs/GodotJS installed containing a justfile which will start the godot editor with the project loaded.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|