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

7 lines
184 B
Nix
Raw Normal View History

2024-04-14 14:22:14 +02:00
{ lib, config, pkgs, ... }:
2024-02-10 14:19:30 +01:00
with lib;
{
2024-04-11 20:15:47 +02:00
programs.helix.settings = mkIf config.programs.helix.enable { theme = "nord"; };
2024-04-14 14:22:14 +02:00
home.sessionVariables."EDITOR" = "${pkgs.helix}/bin/hx";
2024-02-10 14:19:30 +01:00
}