File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ The flake automatically tries caches in order:
881 . ** cache.nixos.org** (official, always first)
992 . ** nix-community.cachix.org** (community cache, high hit rate)
10103 . ** cache.garnix.io** (Garnix CI cache, automatic builds)
11- 4 . ** singularity-ng .cachix.org** (our cache)
11+ 4 . ** mikkihugo .cachix.org** (our cache)
12125 . ** Magic Nix Cache** (GitHub Actions only)
1313
1414All caches are ** FREE** and configured automatically!
@@ -130,8 +130,8 @@ The flake includes Cachix configuration:
130130
131131``` nix
132132nixConfig = {
133- extra-substituters = [ "https://singularity-ng .cachix.org" ];
134- extra-trusted-public-keys = [ "singularity-ng .cachix.org-1:key" ];
133+ extra-substituters = [ "https://mikkihugo .cachix.org" ];
134+ extra-trusted-public-keys = [ "mikkihugo .cachix.org-1:key" ];
135135};
136136```
137137
Original file line number Diff line number Diff line change 3030 - name : Setup Cachix
3131 uses : cachix/cachix-action@v15
3232 with :
33- name : singularity-ng
33+ name : mikkihugo
3434 authToken : ' ${{ secrets.CACHIX_AUTH_TOKEN }}'
3535 pushFilter : ' (-source$|\.drv$)'
3636
6161 echo " cachix use singularity-ng"
6262 echo ""
6363 echo "Or add to /etc/nix/nix.conf:"
64- echo " substituters = https://cache.nixos.org https://singularity-ng .cachix.org"
65- echo " trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= singularity-ng .cachix.org-1:your-key-here"
64+ echo " substituters = https://cache.nixos.org https://mikkihugo .cachix.org"
65+ echo " trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= mikkihugo .cachix.org-1:your-key-here"
Original file line number Diff line number Diff line change @@ -31,13 +31,13 @@ jobs:
3131 extra-conf : |
3232 experimental-features = nix-command flakes
3333 # Multiple free Nix caches for maximum hit rate
34- substituters = https://cache.nixos.org https://nix-community.cachix.org https://cache.garnix.io https://singularity-ng .cachix.org
35- trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g= singularity-ng .cachix.org-1:your-key-here
34+ substituters = https://cache.nixos.org https://nix-community.cachix.org https://cache.garnix.io https://mikkihugo .cachix.org
35+ trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g= mikkihugo .cachix.org-1:your-key-here
3636
3737 - name : Setup Cachix (org cache)
3838 uses : cachix/cachix-action@v15
3939 with :
40- name : singularity-ng
40+ name : mikkihugo
4141 authToken : ' ${{ secrets.CACHIX_AUTH_TOKEN }}'
4242 skipPush : false
4343
Original file line number Diff line number Diff line change 2828
2929 # Option 2: Manual nix.conf configuration
3030 # Add to /etc/nix/nix.conf or ~/.config/nix/nix.conf:
31- substituters = https://cache.nixos.org https://singularity-ng .cachix.org
32- trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= singularity-ng .cachix.org-1:your-signing-key-here
31+ substituters = https://cache.nixos.org https://mikkihugo .cachix.org
32+ trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= mikkihugo .cachix.org-1:your-signing-key-here
3333
3434 # Option 3: In your flake.nix
3535 nixConfig = {
36- extra-substituters = [ "https://singularity-ng .cachix.org" ];
37- extra-trusted-public-keys = [ "singularity-ng .cachix.org-1:your-signing-key-here" ];
36+ extra-substituters = [ "https://mikkihugo .cachix.org" ];
37+ extra-trusted-public-keys = [ "mikkihugo .cachix.org-1:your-signing-key-here" ];
3838 };
3939 '' ;
4040}
Original file line number Diff line number Diff line change 88 "https://nix-community.cachix.org"
99 "https://cache.garnix.io"
1010 # Organization cache
11- "https://singularity-ng .cachix.org"
11+ "https://mikkihugo .cachix.org"
1212 ] ;
1313 extra-trusted-public-keys = [
1414 # Community cache keys
1515 "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
1616 "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="
1717 # Organization cache key
18- "singularity-ng .cachix.org-1:your-signing-key-here"
18+ "mikkihugo .cachix.org-1:your-signing-key-here"
1919 ] ;
2020 } ;
2121
You can’t perform that action at this time.
0 commit comments