15 lines
316 B
Nix
15 lines
316 B
Nix
{pkgs, ...}: {
|
|
home.packages = [
|
|
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";
|
|
};
|
|
}
|