Files
dotfiles/nix/home/zed/default.nix
2024-07-13 14:50:33 +02:00

11 lines
200 B
Nix

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