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