dotfiles/home/modules/helix/default.nix

12 lines
225 B
Nix
Raw Normal View History

2024-11-20 17:47:07 -06:00
{pkgs, ...}: {
programs.helix = let
configPath = ./config;
in
{
enable = true;
package = pkgs.helix;
}
// (import (configPath + /languages.nix))
// (import (configPath + /settings.nix));
}