mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
16 lines
353 B
Nix
16 lines
353 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
nixvimCfg = config.nixvimConfigs.fiesta;
|
|
cfg = nixvimCfg.setups.devenvs;
|
|
in
|
|
{
|
|
options.nixvimConfigs.fiesta.setups.devenvs.enable =
|
|
lib.mkEnableOption "integration for typical devenvs";
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
plugins.direnv.enable = true;
|
|
plugins.nvim-remote-containers.enable = true;
|
|
};
|
|
}
|