hosts: nixos: porthos: system: disable cache
All checks were successful
ci/woodpecker/push/check Pipeline was successful
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:
parent
249ee14d39
commit
8ad02dd74d
|
@ -9,6 +9,7 @@
|
||||||
./networking.nix
|
./networking.nix
|
||||||
./secrets
|
./secrets
|
||||||
./services.nix
|
./services.nix
|
||||||
|
./system.nix
|
||||||
./users.nix
|
./users.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
12
hosts/nixos/porthos/system.nix
Normal file
12
hosts/nixos/porthos/system.nix
Normal 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;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue