module overhaul

module
This commit is contained in:
atagen 2025-01-24 16:59:48 +11:00
parent 8fe3ddc38e
commit ae78cb7026
12 changed files with 1127 additions and 164 deletions

View file

@ -1,9 +1,11 @@
{
outputs = {...}: {
lib = import ./default.nix;
templates.default = {
path = ./example;
description = "the ides template";
};
};
outputs =
{ ... }:
{
lib = import ./default.nix;
templates.default = {
path = ./example;
description = "the ides template";
};
};
}