{ config, options, lib, pkgs, ... }: with lib; with lib.custom; let cfg = config.modules.editors; in { options.modules.editors = { default = mkOpt types.str "vim"; }; config = mkIf (cfg.default != null) { env.EDITOR = cfg.default; }; }