pointfichiers/editor/helix/default.nix

16 lines
316 B
Nix
Raw Normal View History

{pkgs, ...}: {
home.packages = [
2024-09-16 14:13:01 +02:00
pkgs.helix
];
home.file = {
".config/helix/config.toml".source = ./config.toml;
".config/helix/languages.toml".source = ./languages.toml;
".config/helix/themes/jaaj.toml".source = ./themes/jaaj.toml;
};
home.sessionVariables = {
EDITOR = "hx";
};
2024-09-16 14:13:01 +02:00
}