From b4f6cdd697442586ad2976f0816662c40cae22ac Mon Sep 17 00:00:00 2001 From: Max Date: Mon, 1 Aug 2022 21:46:35 +0200 Subject: [PATCH] VEGAS/ipfs: set IOSchedulingPriority --- hosts/VEGAS/services/ipfs/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/VEGAS/services/ipfs/default.nix b/hosts/VEGAS/services/ipfs/default.nix index f8c9267..e0017a5 100644 --- a/hosts/VEGAS/services/ipfs/default.nix +++ b/hosts/VEGAS/services/ipfs/default.nix @@ -11,7 +11,10 @@ in ]; systemd.services.ipfs = { - serviceConfig.LimitNOFILE = 524288; + serviceConfig = { + LimitNOFILE = 524288; + IOSchedulingPriority = 7; + }; environment = { OTEL_TRACES_EXPORTER = "otlp"; OTEL_EXPORTER_OTLP_PROTOCOL = "grpc";