mirror of
https://github.com/js0ny/dotfiles.git
synced 2026-03-23 03:02:42 +00:00
14 lines
207 B
Nix
14 lines
207 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.zed-editor = {
|
|
enable = true;
|
|
extensions = [
|
|
"dockerfile"
|
|
"catppuccin"
|
|
"toml"
|
|
"material-icon-theme"
|
|
"git-firefly"
|
|
"make"
|
|
];
|
|
};
|
|
}
|