mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-13 07:14:40 -05:00
12 lines
302 B
Nix
Executable file
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;
|
|
};
|
|
}
|