Files
nixos-dotfiles/modules/coding/editor/zed/default.nix
2025-06-21 22:55:37 +08:00

21 lines
270 B
Nix

{
config,
lib,
...
}:
lib.my.makeHomeProgramConfig {
inherit config;
programName = "zed-editor";
optionPath = [
"coding"
"editor"
"zed"
];
extraConfig = {
my.persist.homeDirs = [
".config/zed"
".local/share/zed"
];
};
}