2024-09-20 17:56:03 +02:00
|
|
|
{pkgs, ...}: {
|
|
|
|
home.packages = [
|
2024-09-16 14:13:01 +02:00
|
|
|
pkgs.helix
|
|
|
|
];
|
2024-09-16 14:59:57 +02:00
|
|
|
|
|
|
|
home.file = {
|
|
|
|
".config/helix/config.toml".source = ./config.toml;
|
|
|
|
".config/helix/languages.toml".source = ./languages.toml;
|
2024-09-20 17:56:03 +02:00
|
|
|
".config/helix/themes/jaaj.toml".source = ./themes/jaaj.toml;
|
2024-09-16 14:59:57 +02:00
|
|
|
};
|
2024-09-18 13:49:52 +02:00
|
|
|
|
|
|
|
home.sessionVariables = {
|
|
|
|
EDITOR = "hx";
|
|
|
|
};
|
2024-09-16 14:13:01 +02:00
|
|
|
}
|