Files
dotfiles/nix/home/zed/default.nix
Stefan Imhoff 9c6d620ce6 chore(nix): remove extra home packages for programs
As it can lead to conflicts between versions, I removed the additional
imports. They are not needed as the program is installed by enabling the
program.
2024-07-29 15:42:23 +02:00

11 lines
199 B
Nix

{ pkgs, ... }:
{
home.file = {
".config/zed/settings.json" = { source = ./settings.json; };
};
# FIX: Currently broken, installed with Homebrew
# home.packages = [ pkgs.zed-editor ];
}