9 lines
135 B
Nix
9 lines
135 B
Nix
{ config, ... }:
|
|
|
|
with config.krebs.lib;
|
|
{
|
|
nix.gc = {
|
|
automatic = ! elem config.krebs.build.host.name [ "prism" "mors" ];
|
|
};
|
|
}
|