pointfichiers/editor/helix/default.nix

18 lines
256 B
Nix
Raw Normal View History

2024-09-16 14:13:01 +02:00
{
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";
};
2024-09-16 14:13:01 +02:00
}