15 lines
343 B
Nix
15 lines
343 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.packages = [ pkgs.helix ];
|
|
|
|
programs.helix = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
};
|
|
|
|
xdg.configFile."helix/config.toml".source = "${config.dotfiles.path}/.config/helix/config.toml";
|
|
xdg.configFile."helix/languages.toml".source =
|
|
"${config.dotfiles.path}/.config/helix/languages.toml";
|
|
}
|