From 163fae5498841eec0d61abef6855e9ff2ce45bee Mon Sep 17 00:00:00 2001 From: atagen Date: Thu, 6 Feb 2025 11:20:27 +1100 Subject: [PATCH] fix flake lib output --- flake.nix | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) 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"; }; + }; }