nix-config/modules/home-manager/coding/phpactor/default.nix
Oliver Davies 724753327c Remove global tools and language servers
Re-add them as needed for each specific project using each project's
flake.nix file.
2025-05-21 18:28:24 +01:00

17 lines
269 B
Nix

{ config, lib, ... }:
with lib;
let
cfg = config.coding.phpactor;
in
{
options.coding.phpactor.enable = mkEnableOption "Enable phpactor";
config = mkIf cfg.enable {
xdg.configFile.phpactor = {
source = ./config;
recursive = true;
};
};
}