nixos/nix-daemon: don't give daemon by default high io priority
According to https://www.freedesktop.org/software/systemd/man/systemd.exec.html#IOSchedulingClass= the default is 4
This commit is contained in:
parent
9d556e2c75
commit
8017d9e2da
1 changed files with 1 additions and 1 deletions
|
@ -206,7 +206,7 @@ in
|
|||
|
||||
daemonIOSchedPriority = mkOption {
|
||||
type = types.int;
|
||||
default = 0;
|
||||
default = 4;
|
||||
example = 1;
|
||||
description = lib.mdDoc ''
|
||||
Nix daemon process I/O scheduling priority. This priority propagates
|
||||
|
|
Loading…
Reference in a new issue