Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ADD: scripts

+15 -1
+7 -1
noah-home.nix
··· 43 43 unstable.catgirl 44 44 devenv 45 45 plan9port 46 + unstable.rc 46 47 unstable.glow 47 48 unstable.vis 48 49 # Tcl/Tk ··· 161 162 }; 162 163 programs.home-manager.enable = true; 163 164 programs.neovim = { 164 - #package = neovim-unwrapped; 165 + package = unstable.neovim-unwrapped; 165 166 enable = true; 166 167 defaultEditor = true; 167 168 withNodeJs = true; ··· 240 241 241 242 xdg.configFile.ghostty = { 242 243 source = ./ghostty; 244 + recursive = true; 245 + }; 246 + 247 + home.file.".local/bin" = { 248 + source = ./scripts; 243 249 recursive = true; 244 250 }; 245 251
+8
scripts/update-ollama-models.rcsh
··· 1 + #!/usr/bin/env rc 2 + 3 + models=`{ollama ls | tail -n +2 | cut -f 1 -d' '} 4 + 5 + for(model in $models) { 6 + echo Pulling $model 7 + ollama pull $model 8 + }