Bruno BELANYI
8ad02dd74d
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.
13 lines
208 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|