diff --git a/flake.nix b/flake.nix index 73b03d1..54fca8f 100644 --- a/flake.nix +++ b/flake.nix @@ -1,11 +1,9 @@ { - outputs = - _: - { - lib = import ./default.nix; - templates.default = { - path = ./example; - description = "the ides template"; - }; + outputs = _: { + lib.use = import ./default.nix; + templates.default = { + path = ./example; + description = "the ides template"; }; + }; }