diff --git a/config/projects.nix b/config/projects.nix index 54f786d..7322f23 100644 --- a/config/projects.nix +++ b/config/projects.nix @@ -186,5 +186,19 @@ in ]; }; + ai4mat = { + session = "AI4Mat"; + description = "AI4Material workshop"; + windows = [ + { + name = "paper"; + path = homePath "Documents/Projects/Inverse Design of Disordered Materials/AI4Mat-NeurIPS_2025"; + ai = true; + git = true; + shell = false; + } + ]; + }; + }; } diff --git a/modules/git.nix b/modules/git.nix index 802eb90..abe16a3 100644 --- a/modules/git.nix +++ b/modules/git.nix @@ -17,69 +17,16 @@ # macOS ".DS_Store" - ".AppleDouble" - ".LSOverride" - "Icon" - "._*" - ".DocumentRevisions-V100" - ".fseventsd" - ".Spotlight-V100" - ".TemporaryItems" - ".Trashes" - ".VolumeIcon.icns" - ".com.apple.timemachine.donotpresent" # Editors ".vscode/" ".idea/" - "*.swp" - "*.swo" - "*~" - ".vim/" # Development "node_modules/" ".env" ".env.local" ".env.*.local" - "*.log" - "npm-debug.log*" - "yarn-debug.log*" - "yarn-error.log*" - - # Python - "__pycache__/" - "*.py[cod]" - "*$py.class" - ".Python" - "build/" - "develop-eggs/" - "dist/" - "downloads/" - "eggs/" - ".eggs/" - "lib/" - "lib64/" - "parts/" - "sdist/" - "var/" - "wheels/" - "*.egg-info/" - ".installed.cfg" - "*.egg" - - # Temporary files - "*.tmp" - "*.temp" - "*.bak" - "*.backup" - "*~" - - # OS generated files - "Thumbs.db" - "ehthumbs.db" - "Desktop.ini" - "$RECYCLE.BIN/" ]; extraConfig = { @@ -154,4 +101,4 @@ ss = "stash save"; }; }; -} \ No newline at end of file +}