diff --git a/flake.nix b/flake.nix index 5523b5d..32aa492 100644 --- a/flake.nix +++ b/flake.nix @@ -27,8 +27,14 @@ default = self.nixosModules.mfgames-project-setup; }; + # Expose the configuration information. + lib = forEachSupportedSystem ({ system, pkgs }: + let + configs = import ./src/configs/default.nix { inherit system pkgs nixago nixago-exts; }; + in + configs); + # Set up the developer shell. - # Development environments devShells = forEachSupportedSystem ({ system, pkgs }: let configs = import ./src/configs/default.nix { inherit system pkgs nixago nixago-exts; }; diff --git a/src/configs/conform.nix b/src/configs/conform.nix index 8959ce3..188111d 100644 --- a/src/configs/conform.nix +++ b/src/configs/conform.nix @@ -1,7 +1,7 @@ inputs @ { system, nixago, nixago-exts, ... }: nixago-exts.conform.${system} { commit = { - header = { length = 89; }; + header = { length = inputs.pkgs.lib.debug.traceVal 89; }; conventional = { types = [ "build"