mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-12 18:18:59 +00:00
17 lines
422 B
Nix
17 lines
422 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 ];
|
|
};
|
|
}
|