dotfiles/modules/editors/helix.nix

18 lines
235 B
Nix
Raw Permalink Normal View History

2023-03-19 16:30:26 +01:00
{ pkgs, lib, config, options, ... }:
with lib;
let
cfg = config.modules.editors.helix;
in {
options = {
enable = mkOption {
type = types.bool;
default = false;
};
};
2023-04-21 15:40:27 +02:00
config = mkIf cfg.enable {
};
2023-03-19 16:30:26 +01:00
}