{ config, pkgs, lib, ... }: let cfg = config.hm.soft.editor; in { options.hm.soft.editor.enable = lib.mkEnableOption "enables the vis editor along with the nixd language server"; config = lib.mkIf cfg.enable { home.packages = with pkgs; [ vis nixd ]; }; }