Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions codedown.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ let
in

rec {
spellchecker = pkgsMaster.callPackage ./modules/language_servers/markdown-spellcheck-lsp {};
spellchecker = callPackage ./modules/language_servers/markdown-spellcheck-lsp {};

testing = {
builds-forever = pkgsMaster.callPackage ./modules/testing/builds-forever/default.nix {};
builder-uid = pkgsMaster.callPackage ./modules/testing/builder-uid/default.nix {};
builds-forever = callPackage ./modules/testing/builds-forever/default.nix {};
builder-uid = callPackage ./modules/testing/builder-uid/default.nix {};
};

# Exported so clients can build searchers for other package sets, like "codedown.searcher nixpkgs"
Expand Down
3 changes: 0 additions & 3 deletions modules/kernels/bash/kernel.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ let

python = python3.withPackages (ps: [bash-kernel]);

# Checks failed on macOS on release-25.05. Disabling them is one option:
# python = python3.withPackages (ps: [(ps.bash-kernel.overrideAttrs (_oldAttrs: { doCheck = false; }))]);

# bash_kernel submits a cell to bash one line at a time over a PTY (~50ms/line),
# so inlining the ~150-line inspector made the first run take ~10s. Source the
# script from a one-line loader instead
Expand Down
2 changes: 1 addition & 1 deletion modules/kernels/bash/module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
with lib;

let
pkgsToUse = config.pkgsMaster;
pkgsToUse = config.pkgs;

in

Expand Down
2 changes: 1 addition & 1 deletion modules/language_servers/spellchecker/module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
with lib;

let
pkgsToUse = config.pkgsMaster;
pkgsToUse = config.pkgs;

cfg = config.language-servers.spellchecker;

Expand Down
Loading