feat: move html into languages

This commit is contained in:
NotAShelf 2023-04-18 01:05:18 +03:00
commit 7355debede
No known key found for this signature in database
GPG key ID: F0D14CCB5ED5AA22
6 changed files with 51 additions and 9 deletions

View file

@ -1,4 +1,8 @@
{inputs, ...}: let
{
inputs,
pkgs,
...
}: let
inherit (import ../extra.nix inputs) neovimConfiguration mainConfig;
buildPkg = pkgs: modules:
@ -14,5 +18,6 @@ in {
neovim-nix = buildPkg prev [nixConfig];
neovim-maximal = buildPkg prev [maximalConfig];
neovim-tidal = buildPkg prev [tidalConfig];
devPkg = buildPkg pkgs [nixConfig {config.vim.languages.html.enable = pkgs.lib.mkForce true;}];
};
}