- Add homepage project with basic template configuration - Update README to reflect current project examples - Remove root tmux.sh (replaced by template system) - Update generated projects.json with new homepage project The centralized project system now fully replaces individual tmux scripts. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
33 lines
968 B
Nix
33 lines
968 B
Nix
{
|
|
projects = {
|
|
blog = {
|
|
template = "content";
|
|
name = "blog";
|
|
codePath = "/Users/yanlin/Documents/Projects/personal-blog";
|
|
contentPath = "/Users/yanlin/Documents/Projects/personal-blog/content";
|
|
description = "Personal blog project";
|
|
};
|
|
|
|
mdshortcut = {
|
|
template = "research";
|
|
name = "MDShortcut";
|
|
codePath = "/Users/yanlin/Documents/Projects/Material Design Shortcut/MDShortcut-dev";
|
|
paperPath = "/Users/yanlin/Documents/Projects/Material Design Shortcut/MDShortcut-paper";
|
|
description = "Material Design Shortcut research project";
|
|
};
|
|
|
|
nix-config = {
|
|
template = "basic";
|
|
name = "nix";
|
|
codePath = "/Users/yanlin/.config/nix";
|
|
description = "Nix configuration";
|
|
};
|
|
|
|
homepage = {
|
|
template = "basic";
|
|
name = "homepage";
|
|
codePath = "/Users/yanlin/Documents/Projects/Homepage/";
|
|
description = "Personal Homepage";
|
|
};
|
|
};
|
|
}
|