testing default for override

This commit is contained in:
Daniel Winkler 2026-01-30 22:15:18 +11:00
commit fbc508e5b8
2 changed files with 14 additions and 12 deletions

View file

@ -35,19 +35,21 @@
wrappers, wrappers,
... ...
} @ inputs: let } @ inputs: let
wrapperSettings = pkgs: wrapperSettings = pkgs: let
def = pkgs.lib.mkDefault;
in
wrapper.config.wrap { wrapper.config.wrap {
inherit pkgs; inherit pkgs;
cats = { cats = {
clickhouse = false; clickhouse = def false;
gitPlugins = false; gitPlugins = def true;
julia = false; julia = def false;
lua = false; lua = def false;
markdown = false; markdown = def false;
nix = true; nix = def true;
optional = false; optional = def false;
python = false; python = def false;
r = pkgs.lib.mkDefault false; r = def false;
}; };
settings = { settings = {

View file

@ -40,7 +40,7 @@
julia = lib.mkDefault false; julia = lib.mkDefault false;
lua = lib.mkDefault false; lua = lib.mkDefault false;
markdown = lib.mkDefault false; markdown = lib.mkDefault false;
nix = lib.mkDefault false; nix = lib.mkDefault true;
optional = lib.mkDefault false; optional = lib.mkDefault false;
python = lib.mkDefault false; python = lib.mkDefault false;
r = lib.mkDefault false; r = lib.mkDefault false;