MyNixOS website logo
option

services.tuned.profiles

Profiles for TuneD. See tuned.conf(5).

Declarations
Type
attribute set of (attribute set of section of an INI file (attrs of INI atom (null, bool, int, float or string)))
Default
{ }
Example
{
  my-cool-profile = {
    main = {
      include = "my-other-cool-profile";
    };
    my_sysctl = {
      "net.core.rmem_default" = 262144;
      "net.core.wmem_default" = 262144;
      replace = true;
      type = "sysctl";
    };
  };
}