12 lines
192 B
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";
|
|
}
|