17 lines
256 B
Nix
17 lines
256 B
Nix
{
|
|
pkgs,
|
|
...
|
|
} : {
|
|
home.packages =[
|
|
pkgs.helix
|
|
];
|
|
|
|
home.file = {
|
|
".config/helix/config.toml".source = ./config.toml;
|
|
".config/helix/languages.toml".source = ./languages.toml;
|
|
};
|
|
|
|
home.sessionVariables = {
|
|
EDITOR = "hx";
|
|
};
|
|
}
|