ark/pkgs-set/overlays/helix.nix

9 lines
262 B
Nix
Raw Normal View History

2022-06-22 16:49:01 +03:00
{inputs}: final: prev: {
2022-07-30 03:04:32 +03:00
helix = inputs.helix.packages.${prev.system}.default.override {
includeGrammarIf = grammar:
prev.lib.any
(name: grammar.name == name)
2022-07-31 09:44:18 +03:00
["toml" "rust" "nix" "protobuf" "yaml" "json" "markdown" "html" "css"];
2022-07-30 03:04:32 +03:00
};
2022-06-22 16:49:01 +03:00
}