nixos-config/modules/workstation/home-manager/helix.nix

12 lines
192 B
Nix

{
lib,
config,
pkgs,
...
}:
with lib;
{
programs.helix.settings = mkIf config.programs.helix.enable { theme = "nord"; };
home.sessionVariables."EDITOR" = "${pkgs.helix}/bin/hx";
}