diff --git a/modules/home/cliPrograms/helix/default.nix b/modules/home/cliPrograms/helix/default.nix index fe7dd4a..f02b84e 100644 --- a/modules/home/cliPrograms/helix/default.nix +++ b/modules/home/cliPrograms/helix/default.nix @@ -1,4 +1,9 @@ -{ config, lib, ... }: +{ + config, + lib, + pkgs, + ... +}: { options.settings.programs.helix = { enable = lib.mkEnableOption "enables the helix modal editor"; @@ -7,6 +12,7 @@ config = lib.mkIf config.settings.programs.helix.enable { programs.helix = { enable = true; + extraPackages = with pkgs; [ markdown-oxide ]; settings = builtins.fromTOML (builtins.readFile ./config.toml); languages = builtins.fromTOML (builtins.readFile ./languages.toml); };