summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorhappysalada <raphael@megzari.com>2022-11-08 08:14:00 -0500
committerYt <happysalada@proton.me>2022-11-08 10:30:10 -0500
commit2c5abd89c7e917acde9077fc4d12596e35b73e17 (patch)
tree2408545cd55c26fb6edf08dbea998d6305abc229 /nixos/modules
parent0ea6f4c9749d9bc9c079b901279613b441103aa2 (diff)
downloadnixpkgs-2c5abd89c7e917acde9077fc4d12596e35b73e17.tar
nixpkgs-2c5abd89c7e917acde9077fc4d12596e35b73e17.tar.gz
nixpkgs-2c5abd89c7e917acde9077fc4d12596e35b73e17.tar.bz2
nixpkgs-2c5abd89c7e917acde9077fc4d12596e35b73e17.tar.lz
nixpkgs-2c5abd89c7e917acde9077fc4d12596e35b73e17.tar.xz
nixpkgs-2c5abd89c7e917acde9077fc4d12596e35b73e17.tar.zst
nixpkgs-2c5abd89c7e917acde9077fc4d12596e35b73e17.zip
rmem_max: define merge function
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/config/sysctl.nix16
-rw-r--r--nixos/modules/services/torrent/transmission.nix2
2 files changed, 16 insertions, 2 deletions
diff --git a/nixos/modules/config/sysctl.nix b/nixos/modules/config/sysctl.nix
index b4b2d0452c4..4346c88f768 100644
--- a/nixos/modules/config/sysctl.nix
+++ b/nixos/modules/config/sysctl.nix
@@ -21,11 +21,24 @@ in
   options = {
 
     boot.kernel.sysctl = mkOption {
+      type = types.submodule {
+        freeformType = types.attrsOf sysctlOption;
+        options."net.core.rmem_max" = mkOption {
+          type = types.nullOr types.ints.unsigned // {
+            merge = loc: defs:
+              foldl
+                (a: b: if b.value == null then null else lib.max a b.value)
+                0
+                (filterOverrides defs);
+          };
+          default = null;
+          description = lib.mdDoc "The maximum socket receive buffer size. In case of conflicting values, the highest will be used.";
+        };
+      };
       default = {};
       example = literalExpression ''
         { "net.ipv4.tcp_syncookies" = false; "vm.swappiness" = 60; }
       '';
-      type = types.attrsOf sysctlOption;
       description = lib.mdDoc ''
         Runtime parameters of the Linux kernel, as set by
         {manpage}`sysctl(8)`.  Note that sysctl
@@ -35,6 +48,7 @@ in
         parameter may be a string, integer, boolean, or null
         (signifying the option will not appear at all).
       '';
+
     };
 
   };
diff --git a/nixos/modules/services/torrent/transmission.nix b/nixos/modules/services/torrent/transmission.nix
index 5e0d13211bc..9b53f5de143 100644
--- a/nixos/modules/services/torrent/transmission.nix
+++ b/nixos/modules/services/torrent/transmission.nix
@@ -431,7 +431,7 @@ in
       # https://trac.transmissionbt.com/browser/trunk/libtransmission/tr-udp.c?rev=11956.
       # at least up to the values hardcoded here:
       (mkIf cfg.settings.utp-enabled {
-        "net.core.rmem_max" = mkDefault "4194304"; # 4MB
+        "net.core.rmem_max" = mkDefault 4194304; # 4MB
         "net.core.wmem_max" = mkDefault "1048576"; # 1MB
       })
       (mkIf cfg.performanceNetParameters {