mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
18 lines
417 B
Nix
18 lines
417 B
Nix
{ config, lib, pkgs, helpers,... }:
|
|
|
|
let
|
|
cfg = config.plugins.nvim-remote-containers;
|
|
in
|
|
{
|
|
options.plugins.nvim-remote-containers = {
|
|
enable = lib.mkEnableOption "nvim-remote-containers";
|
|
|
|
package = lib.mkPackageOption pkgs [ "vimPlugins" "nvim-remote-containers" ] { };
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
plugins.treesitter.enable = lib.mkDefault true;
|
|
extraPlugins = [ cfg.package ];
|
|
};
|
|
}
|