dotfiles/home/modules/helix/default.nix
2025-01-08 19:06:14 -06:00

12 lines
298 B
Nix
Executable file

{pkgs, ...}: {
programs.helix = let
configPath = ./config;
settingsPath = import (configPath + /settings.nix);
languagesPath = import (configPath + /languages.nix);
in {
enable = true;
package = pkgs.helix;
languages = languagesPath;
settings = settingsPath;
};
}