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:
parent
e654473e97
commit
724753327c
5 changed files with 11 additions and 175 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue