my nixos configuration
0
fork

Configure Feed

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

Merge branch 'main' of github.com:thundertheidiot/nixdots

Thunder 9eb7bfa8 dbe0e489

+32
+14
.github/workflows/mirror.yaml
··· 1 + jobs: 2 + push: 3 + runs-on: ubuntu-latest 4 + steps: 5 + - uses: actions/checkout@v5 6 + - name: Push 7 + run: |- 8 + echo "${{ secrets.VPS_DEPLOY_SSH_KEY }}" > ~/deploykey 9 + chmod 600 ~/deploykey 10 + 11 + GIT_SSH_COMMAND="ssh -i ~/deploykey -o StrictHostKeyChecking=no" git push git@tangled.org:thundertheidiot.bsky.social/nixdots main 12 + name: Mirror repository for other forges 13 + 'on': 14 + push: {}
+18
flake/actions.nix
··· 154 154 jobs.update-vps.steps = [blocks.vpsDeploy]; 155 155 }; 156 156 157 + ".github/workflows/mirror.yaml" = { 158 + name = "Mirror repository for other forges"; 159 + 160 + on.push = {}; 161 + jobs.push.steps = [ 162 + blocks.checkout 163 + { 164 + name = "Push"; 165 + run = '' 166 + echo "''${{ secrets.VPS_DEPLOY_SSH_KEY }}" > ~/deploykey 167 + chmod 600 ~/deploykey 168 + 169 + GIT_SSH_COMMAND="ssh -i ~/deploykey -o StrictHostKeyChecking=no" git push git@tangled.org:thundertheidiot.bsky.social/nixdots main 170 + ''; 171 + } 172 + ]; 173 + }; 174 + 157 175 ".github/workflows/update-flake.yaml" = { 158 176 name = "Update flake.lock"; 159 177