blob: d20db0e2579b15ece0d82078a5736d8e41ad6801 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ config, lib, pkgs, ... }:
let
cfg = config.hm.editors.helix;
in
{
options.hm.editors.helix.enable = lib.mkEnableOption "enables helix editor";
config = lib.mkIf cfg.enable {
programs.helix = {
enable = true;
package = pkgs.helix;
};
};
}
|