services.tuned.profiles
NixOS option
Profiles for TuneD. See tuned.conf(5) for details.
type: attribute set of (open submodule of attribute set of section of an INI file (attrs of INI atom (null, bool, int, float or string)))Default
{ }Example
declared in: nixos/modules/services/hardware/tuned.nixView source on NixOS/nixpkgs →{
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";
};
};
}