dotfiles/modules/editors/helix.nix
2023-03-19 16:30:26 +01:00

18 lines
238 B
Nix

{ pkgs, lib, config, options, ... }:
with lib;
let
cfg = config.modules.editors.helix;
in {
options = {
enable = mkOption {
type = types.bool;
default = false;
};
};
#config = mkIf cfg.enable {
#
#};
}