9 lines
171 B
Nix
9 lines
171 B
Nix
{ config, ... }:
|
|
|
|
with import <stockholm/lib>;
|
|
{
|
|
nix.gc = {
|
|
automatic = ! (elem config.krebs.build.host.name [ "mors" "helios" ] || config.boot.isContainer);
|
|
};
|
|
}
|