From ef5594d963fe352b9bbe6e787a35268b94fa92da Mon Sep 17 00:00:00 2001 From: valentin gagarin Date: Wed, 13 Nov 2024 15:24:41 +0100 Subject: [PATCH] add resulting Nix value to default.nix outputs this is practical for debugging and demonstration purposes --- website/default.nix | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/website/default.nix b/website/default.nix index a750d3b..daad6a0 100644 --- a/website/default.nix +++ b/website/default.nix @@ -15,25 +15,22 @@ let new // { types = prev.recursiveUpdate prev.types new.types; }; lib'' = lib.extend lib'; in -{ +rec { lib = import ./lib.nix { inherit lib; }; + result = lib''.evalModules { + modules = [ + ./structure + ./content + ./presentation + { + _module.args = { + inherit pkgs; + }; + } + ]; + }; - build = - let - result = lib''.evalModules { - modules = [ - ./structure - ./content - ./presentation - { - _module.args = { - inherit pkgs; - }; - } - ]; - }; - in - result.config.build; + inherit (result.config) build; shell = pkgs.mkShellNoCC { packages = with pkgs; [