Remove global tools and language servers

Re-add them as needed for each specific project using each project's
flake.nix file.
This commit is contained in:
Oliver Davies 2025-05-20 11:53:06 +01:00
parent e654473e97
commit 724753327c
5 changed files with 11 additions and 175 deletions

View file

@ -1,9 +1,4 @@
{
config,
lib,
pkgs,
...
}:
{ config, lib, ... }:
with lib;
@ -11,13 +6,9 @@ let
cfg = config.coding.phpactor;
in
{
options.coding.phpactor.enable = lib.mkEnableOption "Enable phpactor";
options.coding.phpactor.enable = mkEnableOption "Enable phpactor";
config = mkIf cfg.enable {
home.packages = with pkgs; [
phpactor
];
xdg.configFile.phpactor = {
source = ./config;
recursive = true;