nixvim time!

This commit is contained in:
Charlie Root 2024-05-21 22:30:34 +02:00
commit d19d367cb3
10 changed files with 320 additions and 30 deletions

View file

@ -0,0 +1,14 @@
{pkgs, config, lib, ...}:
with lib;
let
cfg = config.modules.editors.nixvim;
inherit (inputs.nixvim.packges.${pkgs.system}) nixvim;
in {
options.modules.editors.nivim.enable = mkEnableOption "nixvim";
config = mkIf cfg.enable {
programs.nixvim = {
enable = true;
};
};
}