improve size and swap for gateway

This commit is contained in:
soraefir
2026-06-21 23:09:33 +02:00
parent 473b290258
commit 6366d9b313
4 changed files with 24 additions and 3 deletions
+14
View File
@@ -0,0 +1,14 @@
{ config, lib, ... }:
let
cfg = config.syscfg.make;
withDocs = cfg.gui || cfg.develop || cfg.serverExtras;
in
{
documentation = lib.mkIf (!withDocs) {
enable = false;
man.enable = false;
info.enable = false;
doc.enable = false;
nixos.enable = false;
};
}