🚀 add helix and kakoune

This commit is contained in:
Moritz Böhme 2022-08-20 14:21:15 +02:00
parent bb9ef66f98
commit 15f3472bf8
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
4 changed files with 145 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ 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";
};
};
};
};
}