15 lines
273 B
Nix
15 lines
273 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|