dotfiles/modules/programs/helix.nix

26 lines
389 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
{
2022-10-15 20:00:09 +02:00
options.my.programs.helix.enable = mkEnableOption "helix";
2022-08-20 14:21:15 +02:00
config = mkIf cfg.enable {
home-manager.users.moritz.programs.helix = {
enable = true;
settings = {
theme = "dracula";
keys.normal = {
space.space = "file_picker";
};
};
};
};
}