nix-config/hosts/nixos/porthos/system.nix
Bruno BELANYI 8ad02dd74d
All checks were successful
ci/woodpecker/push/check Pipeline was successful
hosts: nixos: porthos: system: disable cache
We're never going to get a cache hit, since this is the host for that
cache.
2023-10-31 14:00:47 +00:00

13 lines
208 B
Nix

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