Skip to content

Commit 66ec5b8

Browse files
committed
Update Cachix cache name to mikkihugo
Use the actual Cachix cache name 'mikkihugo' throughout all configuration files and workflows. Changed: - flake.nix: mikkihugo.cachix.org - cachix.nix: name = mikkihugo - nix-ci.yml: name: mikkihugo - cachix-push.yml: name: mikkihugo - NIX_CACHING.md: updated documentation Cache URL: https://mikkihugo.cachix.org Dashboard: https://app.cachix.org/cache/mikkihugo Users can now use: cachix use mikkihugo nix develop # automatically pulls from mikkihugo cache
1 parent ecfc9bd commit 66ec5b8

5 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/NIX_CACHING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The flake automatically tries caches in order:
88
1. **cache.nixos.org** (official, always first)
99
2. **nix-community.cachix.org** (community cache, high hit rate)
1010
3. **cache.garnix.io** (Garnix CI cache, automatic builds)
11-
4. **singularity-ng.cachix.org** (our cache)
11+
4. **mikkihugo.cachix.org** (our cache)
1212
5. **Magic Nix Cache** (GitHub Actions only)
1313

1414
All caches are **FREE** and configured automatically!
@@ -130,8 +130,8 @@ The flake includes Cachix configuration:
130130

131131
```nix
132132
nixConfig = {
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

.github/workflows/cachix-push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
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

@@ -61,5 +61,5 @@ jobs:
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"

.github/workflows/nix-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

cachix.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@
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
}

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
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

0 commit comments

Comments
 (0)