mirror of
https://github.com/dwinkler1/nvimConfig.git
synced 2026-02-19 14:30:58 -05:00
testing default for override
This commit is contained in:
parent
1960e3bcac
commit
fbc508e5b8
2 changed files with 14 additions and 12 deletions
24
flake.nix
24
flake.nix
|
|
@ -35,19 +35,21 @@
|
|||
wrappers,
|
||||
...
|
||||
} @ inputs: let
|
||||
wrapperSettings = pkgs:
|
||||
wrapperSettings = pkgs: let
|
||||
def = pkgs.lib.mkDefault;
|
||||
in
|
||||
wrapper.config.wrap {
|
||||
inherit pkgs;
|
||||
cats = {
|
||||
clickhouse = false;
|
||||
gitPlugins = false;
|
||||
julia = false;
|
||||
lua = false;
|
||||
markdown = false;
|
||||
nix = true;
|
||||
optional = false;
|
||||
python = false;
|
||||
r = pkgs.lib.mkDefault false;
|
||||
clickhouse = def false;
|
||||
gitPlugins = def true;
|
||||
julia = def false;
|
||||
lua = def false;
|
||||
markdown = def false;
|
||||
nix = def true;
|
||||
optional = def false;
|
||||
python = def false;
|
||||
r = def false;
|
||||
};
|
||||
|
||||
settings = {
|
||||
|
|
@ -73,7 +75,7 @@
|
|||
background = "dark";
|
||||
wrapRc = true;
|
||||
};
|
||||
binName = "vv";
|
||||
binName = "vv";
|
||||
};
|
||||
|
||||
systems = [
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
julia = lib.mkDefault false;
|
||||
lua = lib.mkDefault false;
|
||||
markdown = lib.mkDefault false;
|
||||
nix = lib.mkDefault false;
|
||||
nix = lib.mkDefault true;
|
||||
optional = lib.mkDefault false;
|
||||
python = lib.mkDefault false;
|
||||
r = lib.mkDefault false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue