feat(nix): migrate zed

This commit is contained in:
Stefan Imhoff
2024-07-13 14:50:33 +02:00
parent a5092c41a0
commit 400488a2fd
5 changed files with 12 additions and 1 deletions

View File

@@ -16,7 +16,6 @@
~/.config/nvim: nvim
~/.config/starship.toml: prompt/starship.toml
~/.config/tmux/tmux-nerd-font-window-name.yml: tmux/tmux-nerd-font-window-name.yml
~/.config/zed/settings.json: zed/settings.json
~/.gitconfig: git/gitconfig
~/.gitignore: git/gitignore
~/.gitmux.conf: tmux/gitmux.conf

View File

@@ -12,6 +12,7 @@
casks = [
"hammerspoon"
"raycast"
"zed"
];
masApps = { };
}

View File

@@ -27,6 +27,7 @@ in
./wget
./yabai
./yazi
./zed
];
config = {

10
nix/home/zed/default.nix Normal file
View File

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