dotfiles/modules/programs/helix.nix

32 lines
466 B
Nix
Raw Normal View History

2022-08-20 14:21:15 +02:00
{ config
, lib
, pkgs
, ...
}:
with lib;
let
cfg = config.my.programs.helix;
in
{
options.my.programs.helix = {
enable = mkOption {
default = true;
type = types.bool;
example = false;
};
};
config = mkIf cfg.enable {
home-manager.users.moritz.programs.helix = {
enable = true;
settings = {
theme = "dracula";
keys.normal = {
space.space = "file_picker";
};
};
};
};
}