2024-09-16 14:13:01 +02:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
} : {
|
|
|
|
home.packages =[
|
|
|
|
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-18 13:49:52 +02:00
|
|
|
|
|
|
|
home.sessionVariables = {
|
|
|
|
EDITOR = "hx";
|
|
|
|
};
|
2024-09-16 14:13:01 +02:00
|
|
|
}
|