pointfichiers/editor/helix/default.nix
2024-09-18 13:49:52 +02:00

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";
};
}