From 9b9c710f4bc71be609185f9da66e12cbe53c7219 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Mon, 17 Jun 2024 09:49:31 -0500 Subject: [PATCH] only need roc-full --- lib/checks.nix | 3 +-- modules/languages/roc.nix | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/checks.nix b/lib/checks.nix index 64118ec..5c17fe2 100644 --- a/lib/checks.nix +++ b/lib/checks.nix @@ -12,8 +12,7 @@ inputs.tsm.packages.${pkgs.system}.default inputs.hyprman.packages.${pkgs.system}.default - inputs.roc.packages.${pkgs.system}.full - inputs.roc.packages.${pkgs.system}.lang-server + inputs.roc.packages.${pkgs.system}.full # cli + lang_server inputs.zls.outputs.packages.${pkgs.system}.default inputs.zig2nix.outputs.packages.${pkgs.system}.zig.master.bin diff --git a/modules/languages/roc.nix b/modules/languages/roc.nix index 29a3d80..b0a3b09 100644 --- a/modules/languages/roc.nix +++ b/modules/languages/roc.nix @@ -13,8 +13,7 @@ in { config = mkIfIn "roc" cfg { environment.systemPackages = with rocPkgs; [ - full - lang-server + full # cli + lang_server ]; }; }