feat: zed-editor

This commit is contained in:
2025-06-21 22:55:37 +08:00
parent 4685f31aa1
commit 0c679290c5
3 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
{
config,
lib,
pkgs,
...
}:
lib.my.makeHomeProgramConfig {
inherit config;
programName = "vscode";
optionPath = [
"coding"
"editor"
"vscode"
];
extraConfig = {
my.home = {
programs.vscode = {
package = pkgs.vscodium;
};
};
my.persist.homeDirs = [
".config/VSCodium"
".vscode-oss"
];
};
}