chore: trying to export lib
This commit is contained in:
parent
20f4493a0d
commit
c19bf95e1f
2 changed files with 8 additions and 2 deletions
|
@ -27,8 +27,14 @@
|
||||||
default = self.nixosModules.mfgames-project-setup;
|
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.
|
# Set up the developer shell.
|
||||||
# Development environments
|
|
||||||
devShells = forEachSupportedSystem ({ system, pkgs }:
|
devShells = forEachSupportedSystem ({ system, pkgs }:
|
||||||
let
|
let
|
||||||
configs = import ./src/configs/default.nix { inherit system pkgs nixago nixago-exts; };
|
configs = import ./src/configs/default.nix { inherit system pkgs nixago nixago-exts; };
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
inputs @ { system, nixago, nixago-exts, ... }:
|
inputs @ { system, nixago, nixago-exts, ... }:
|
||||||
nixago-exts.conform.${system} {
|
nixago-exts.conform.${system} {
|
||||||
commit = {
|
commit = {
|
||||||
header = { length = 89; };
|
header = { length = inputs.pkgs.lib.debug.traceVal 89; };
|
||||||
conventional = {
|
conventional = {
|
||||||
types = [
|
types = [
|
||||||
"build"
|
"build"
|
||||||
|
|
Loading…
Reference in a new issue