t14_legacy_config/home/apps/editors/default.nix

19 lines
318 B
Nix
Raw Normal View History

2022-11-30 04:29:21 +01:00
{ config, lib, pkgs, ... } :
with lib;
let
cfg = config.local.apps.editors;
in
{
options.local.apps.editors.enable = mkEnableOption "Text editors";
imports = [ ./vscode ];
config = mkIf cfg.enable {
local.apps.editors.vscode = mkDefault true;
neovim.enable = true;
helix.enable = true;
};
}