fix(cache): point to servivi for binary cache
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
557dab9321
commit
8b902e9c00
2 changed files with 4 additions and 3 deletions
|
@ -9,9 +9,9 @@ This directory encompasses every device's main configuration file.
|
||||||
| `android` | My [Nix-On-Droid](https://github.com/nix-community/nix-on-droid) configuration for my OnePlus 9 Pro |
|
| `android` | My [Nix-On-Droid](https://github.com/nix-community/nix-on-droid) configuration for my OnePlus 9 Pro |
|
||||||
| `binto` | My desktop PC with a multi-monitor setup and an NVIDIA (cringe) 3070 |
|
| `binto` | My desktop PC with a multi-monitor setup and an NVIDIA (cringe) 3070 |
|
||||||
| `cluster` | Two Lenovo mini PCs that make use of [NixOS-pcsd](https://github.com/matt1432/nixos-pcsd) to form a cluster |
|
| `cluster` | Two Lenovo mini PCs that make use of [NixOS-pcsd](https://github.com/matt1432/nixos-pcsd) to form a cluster |
|
||||||
| `nos` | My current custom built server running Proxmox. Conversion to NixOS wip |
|
| `nos` | My custom built NAS |
|
||||||
| `oksys` | A very old Acer laptop that went from sailing the seas for years to becoming my web server and VPN host. It is now retired indefinitely. |
|
| `oksys` | A very old Acer laptop that went from sailing the seas for years to becoming my web server and VPN host. It is now retired indefinitely. |
|
||||||
| `servivi` | A gaming PC in a previous life, it is now used to slowly convert my Proxmox server to NixOS |
|
| `servivi` | A gaming PC in a previous life, it is now used to experiment and do heavier stuff |
|
||||||
| `wim` | My 2-1 Lenovo Laptop that I use for uni |
|
| `wim` | My 2-1 Lenovo Laptop that I use for uni |
|
||||||
|
|
||||||
## Global Vars
|
## Global Vars
|
||||||
|
|
|
@ -32,6 +32,7 @@ in {
|
||||||
virtualHosts = let
|
virtualHosts = let
|
||||||
clusterIP = config.services.pcsd.virtualIps.caddy-vip.ip;
|
clusterIP = config.services.pcsd.virtualIps.caddy-vip.ip;
|
||||||
nosIP = "10.0.0.121";
|
nosIP = "10.0.0.121";
|
||||||
|
serviviIP = "10.0.0.249";
|
||||||
in {
|
in {
|
||||||
"nelim.org" = {
|
"nelim.org" = {
|
||||||
serverAliases = ["*.nelim.org"];
|
serverAliases = ["*.nelim.org"];
|
||||||
|
@ -73,7 +74,7 @@ in {
|
||||||
|
|
||||||
nix-binary-cache = {
|
nix-binary-cache = {
|
||||||
subDomainName = "cache";
|
subDomainName = "cache";
|
||||||
reverseProxy = "${nosIP}:5000";
|
reverseProxy = "${serviviIP}:5000";
|
||||||
};
|
};
|
||||||
|
|
||||||
calibre = {
|
calibre = {
|
||||||
|
|
Loading…
Reference in a new issue