dotfiles/home/modules/helix/default.nix
2024-11-20 18:57:43 -06:00

11 lines
225 B
Nix
Executable file

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