feat: replace vscode with zed, a much faster alternative

This commit is contained in:
wi11-holdsworth 2025-10-01 20:43:15 +10:00
parent 592f72346a
commit c0023da56d
5 changed files with 2 additions and 87 deletions

View file

@ -1,16 +0,0 @@
{
config,
inputs,
lib,
...
}:
let
feature = "vscode-server";
in
{
config = lib.mkIf config.${feature}.enable { services.vscode-server.enable = true; };
options.${feature}.enable = lib.mkEnableOption "enables ${feature}";
imports = [ inputs.vscode-server.nixosModules.default ];
}