pointfichiers/editor/helix/default.nix
2024-09-16 14:59:57 +02:00

13 lines
203 B
Nix

{
pkgs,
...
} : {
home.packages =[
pkgs.helix
];
home.file = {
".config/helix/config.toml".source = ./config.toml;
".config/helix/languages.toml".source = ./languages.toml;
};
}