infra/module/aspect/software/code/editor/gui/zed.nix
2025-12-01 13:23:24 +07:00

13 lines
No EOL
201 B
Nix

{
den.aspects = {
code-editor-gui = {
homeManager =
{ pkgs, ... }:
{
home.packages = [
pkgs.latest.zed-editor
];
};
};
};
}