24 lines
No EOL
668 B
Nix
24 lines
No EOL
668 B
Nix
{
|
|
description = "An opinionated collection of nix packages and templates to scaffold projects with.";
|
|
|
|
outputs = { ... }:
|
|
{
|
|
homeManagerModules = {
|
|
dev = import ./home/dev;
|
|
work = import ./home/work;
|
|
home = import ./home/home;
|
|
default = import ./home;
|
|
};
|
|
|
|
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.
|
|
'';
|
|
};
|
|
|
|
};
|
|
};
|
|
} |