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

+25
+5
noah-home.nix
··· 262 262 recursive = true; 263 263 }; 264 264 265 + home.file.".local/bin" = { 266 + source = ./scripts; 267 + recursive = true; 268 + }; 269 + 265 270 home.stateVersion = "23.11"; 266 271 267 272 }
+6
scripts/nr
··· 1 + #!/usr/bin/env rc 2 + 3 + flag e + 4 + flag x + 5 + 6 + exec nix run 'nixpkgs#'^$*
+14
scripts/update-src
··· 1 + #!/usr/bin/env rc 2 + 3 + background=() 4 + for(repo in `{cat downstream}) { 5 + echo Updating $repo 6 + git -C $repo fetch --all --tags --prune --force & 7 + background=($apid $background) 8 + } 9 + 10 + for (i in $background) { 11 + wait $i 12 + } 13 + 14 + echo Done!