hosts: nixos: porthos: system: disable cache
ci/woodpecker/push/check Pipeline was successful Details

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
./secrets
./services.nix
./system.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;
};
};
};
}