From a27f2bb795cd716013b71237ade8adf6ae835e2f Mon Sep 17 00:00:00 2001 From: Sameer Rahmani Date: Tue, 30 Apr 2024 21:59:02 +0100 Subject: [PATCH] Add the missing imports to the python and c-family modules --- nix/modules/c-family/default.nix | 4 ++++ nix/modules/python/default.nix | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/nix/modules/c-family/default.nix b/nix/modules/c-family/default.nix index 9416942..3bbe5d1 100644 --- a/nix/modules/c-family/default.nix +++ b/nix/modules/c-family/default.nix @@ -38,6 +38,10 @@ let }; in { + imports = [ + ../language-server + ]; + options.fg42.c-family.enable = mkAndEnableOption "c-family"; config = mkIf cfg.enable { diff --git a/nix/modules/python/default.nix b/nix/modules/python/default.nix index 4e7caed..2984675 100644 --- a/nix/modules/python/default.nix +++ b/nix/modules/python/default.nix @@ -51,6 +51,10 @@ let ]); in { + imports = [ + ../language-server + ]; + options.fg42.python-support.enable = mkAndEnableOption "python-support"; config = mkIf cfg.enable {