hosts: nixos: porthos: system: disable cache
All checks were successful
ci/woodpecker/push/check Pipeline was successful

We're never going to get a cache hit, since this is the host for that
cache.
This commit is contained in:
Bruno BELANYI 2023-10-31 14:00:47 +00:00
parent 249ee14d39
commit 8ad02dd74d
2 changed files with 13 additions and 0 deletions

View file

@ -9,6 +9,7 @@
./networking.nix ./networking.nix
./secrets ./secrets
./services.nix ./services.nix
./system.nix
./users.nix ./users.nix
]; ];

View file

@ -0,0 +1,12 @@
# Core system configuration
{ ... }:
{
my.system = {
nix = {
cache = {
# This server is the one serving the cache, don't try to query it
selfHosted = false;
};
};
};
}