Files
dotfiles/config/home-manager/packages/workstation/zed-editor.nix
Menno van Leeuwen 9c28dfe6ae adds packages per hostname
adds unstable nixpkgs for vscode, docker, go and ollama
updates tilingshell layouts
2024-11-05 15:07:37 +01:00

13 lines
279 B
Nix

{ pkgs-unstable, ... }:
{
home.packages = with pkgs-unstable; [
zed-editor
nixd
nixdoc
# We need nodejs due to a stupid bug with CoPilot not loading properly
# https://github.com/zed-industries/zed/issues/12187#issuecomment-2322338504
nodejs_22
];
}