mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
feat: assert failing conditions
This commit is contained in:
parent
f1f4b80c59
commit
bd61b1375a
2 changed files with 19 additions and 12 deletions
|
@ -6,11 +6,16 @@
|
||||||
with lib; let
|
with lib; let
|
||||||
cfg = config.vim;
|
cfg = config.vim;
|
||||||
in {
|
in {
|
||||||
|
config = {
|
||||||
assertions = mkMerge [
|
assertions = mkMerge [
|
||||||
{
|
{
|
||||||
assertion = cfg.kommentary.enable;
|
assertion = cfg.kommentary.enable;
|
||||||
message = "Kommentary has been deprecated in favor of comments-nvim";
|
message = "Kommentary has been deprecated in favor of comments-nvim";
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
assertion = cfg.utility.colorizer.enable;
|
||||||
|
message = "config.utility.colorizer has been renamed to config.utility.ccc";
|
||||||
|
}
|
||||||
mkIf
|
mkIf
|
||||||
(config.programs.neovim-flake.enable)
|
(config.programs.neovim-flake.enable)
|
||||||
{
|
{
|
||||||
|
@ -18,4 +23,5 @@ in {
|
||||||
message = "You cannot use `programs.neovim-flake.enable` with `programs.neovim.enable`";
|
message = "You cannot use `programs.neovim-flake.enable` with `programs.neovim.enable`";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -66,6 +66,7 @@ inputs: {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
imports = [./assertions.nix];
|
||||||
inherit (module) options config;
|
inherit (module) options config;
|
||||||
inherit (module._module.args) pkgs;
|
inherit (module._module.args) pkgs;
|
||||||
inherit neovim;
|
inherit neovim;
|
||||||
|
|
Loading…
Reference in a new issue