- Add server and remoteDir fields to research projects configuration - Update project launcher to handle remote server parameters - Enhance research template with remote server window (window 7) - Add dual-pane remote SSH connections with auto-reconnect aliases - Document remote server features in README with configuration examples Features: - Type 'r' in any remote pane to reconnect after network drops - Automatic SSH connection and directory navigation - Parallel remote work with dual panes - Backwards compatible - optional server configuration 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
59 lines
1.8 KiB
Nix
59 lines
1.8 KiB
Nix
{
|
|
projects = {
|
|
nix-config = {
|
|
template = "basic";
|
|
name = "nix";
|
|
codePath = "/Users/yanlin/.config/nix";
|
|
description = "Nix configuration";
|
|
};
|
|
|
|
homelab = {
|
|
template = "basic";
|
|
name = "homelab";
|
|
codePath = "/Users/yanlin/Documents/Projects/Homelab-deploy";
|
|
description = "Homelab Deployment";
|
|
};
|
|
|
|
blog = {
|
|
template = "content";
|
|
name = "blog";
|
|
codePath = "/Users/yanlin/Documents/Projects/personal-blog";
|
|
contentPath = "/Users/yanlin/Documents/Projects/personal-blog/content";
|
|
description = "Personal blog project";
|
|
};
|
|
|
|
homepage = {
|
|
template = "basic";
|
|
name = "homepage";
|
|
codePath = "/Users/yanlin/Documents/Projects/Homepage/";
|
|
description = "Personal Homepage";
|
|
};
|
|
|
|
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";
|
|
server = "aicloud";
|
|
remoteDir = "~/MDS";
|
|
};
|
|
|
|
daki3 = {
|
|
template = "basic";
|
|
name = "DAKI3";
|
|
codePath = "/Users/yanlin/Documents/Projects/AI systems & infrastructure/Codes";
|
|
description = "DAKI3 course Demo code";
|
|
};
|
|
|
|
diffdismatter = {
|
|
template = "research";
|
|
name = "DiffDisMatter";
|
|
codePath = "/Users/yanlin/Documents/Projects/Inverse Design of Disordered Materials/DiffDisMatter-dev";
|
|
paperPath = "/Users/yanlin/Documents/Projects/Inverse Design of Disordered Materials/mc-denoising-paper";
|
|
description = "Inverse material design";
|
|
server = "aicloud";
|
|
remoteDir = "~/DiffDisMatter";
|
|
};
|
|
};
|
|
}
|