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

12 lines
192 B
Nix
Raw Permalink Normal View History

2024-04-23 12:49:11 +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
}