mirror of
https://github.com/dwinkler1/nvimConfig.git
synced 2026-07-07 16:08:22 -04:00
Expose shellhooks via API
This commit is contained in:
parent
db610620b3
commit
ed7abad63c
2 changed files with 4 additions and 1 deletions
|
|
@ -55,6 +55,7 @@ Modular Neovim wrapper config. Defines a wrapped `vv` binary with per-category p
|
||||||
in {
|
in {
|
||||||
default = pkgs.mkShell {
|
default = pkgs.mkShell {
|
||||||
packages = [ nv ] ++ nvimConfig.lib.devShellPackages evalResult.config;
|
packages = [ nv ] ++ nvimConfig.lib.devShellPackages evalResult.config;
|
||||||
|
shellHook = nvimConfig.lib.shellHook evalResult.config;
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
@ -171,6 +172,7 @@ This example enables a few cats, adds runtime tools to the shared wrapper/devShe
|
||||||
|
|
||||||
devShells.${system}.default = pkgs.mkShell {
|
devShells.${system}.default = pkgs.mkShell {
|
||||||
packages = [ nv ] ++ nvimConfig.lib.devShellPackages evalResult.config;
|
packages = [ nv ] ++ nvimConfig.lib.devShellPackages evalResult.config;
|
||||||
|
shellHook = nvimConfig.lib.shellHook evalResult.config;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
@ -336,4 +338,4 @@ cats.nix ───────────────► config.cats │
|
||||||
- **cat-packages.nix** is the single source of truth for per-category packages. Each list is gated by its cat toggle.
|
- **cat-packages.nix** is the single source of truth for per-category packages. Each list is gated by its cat toggle.
|
||||||
- **deps.nix** wires `catPkgs` into the wrapper's runtime PATH.
|
- **deps.nix** wires `catPkgs` into the wrapper's runtime PATH.
|
||||||
- **settings.lang_packages** holds the shared defaults used by local outputs and downstream module consumers.
|
- **settings.lang_packages** holds the shared defaults used by local outputs and downstream module consumers.
|
||||||
- **flake.nix** exports `lib.eval`, `lib.mkWrapper`, and `lib.devShellPackages` as the canonical downstream helpers, and builds `packages.default` and `devShells.default` from the same module config.
|
- **flake.nix** exports `lib.eval`, `lib.mkWrapper`, `lib.devShellPackages`, and `lib.shellHook` as the canonical downstream helpers, and builds `packages.default` and `devShells.default` from the same module config.
|
||||||
|
|
|
||||||
|
|
@ -104,6 +104,7 @@
|
||||||
eval = {pkgs, modules ? []}: evalWithPkgs pkgs modules;
|
eval = {pkgs, modules ? []}: evalWithPkgs pkgs modules;
|
||||||
mkWrapper = {pkgs, modules ? []}: (evalWithPkgs pkgs modules).config.wrap {inherit pkgs;};
|
mkWrapper = {pkgs, modules ? []}: (evalWithPkgs pkgs modules).config.wrap {inherit pkgs;};
|
||||||
devShellPackages = config: mkDevShellPackages config;
|
devShellPackages = config: mkDevShellPackages config;
|
||||||
|
shellHook = config: mkShellHook config;
|
||||||
};
|
};
|
||||||
|
|
||||||
overlays = {
|
overlays = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue