dotfiles/home/modules/helix/default.nix
2025-01-08 01:05:45 -06:00

12 lines
302 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;
};
}