From e5bfd117b4d55dfb6e11c7b012af0f634cfb1231 Mon Sep 17 00:00:00 2001 From: GarandPLG Date: Thu, 12 Feb 2026 22:43:07 +0100 Subject: [PATCH] Increase disk warning and critical thresholds The warning threshold is now 90% and the critical threshold is 95%, up from 80% and 90%. --- modules/home/noctalia/settings/system-monitor.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/home/noctalia/settings/system-monitor.nix b/modules/home/noctalia/settings/system-monitor.nix index a0c2567..ea470a1 100644 --- a/modules/home/noctalia/settings/system-monitor.nix +++ b/modules/home/noctalia/settings/system-monitor.nix @@ -16,8 +16,8 @@ in { memCriticalThreshold = 90; swapWarningThreshold = 80; swapCriticalThreshold = 90; - diskWarningThreshold = 80; - diskCriticalThreshold = 90; + diskWarningThreshold = 90; + diskCriticalThreshold = 95; cpuPollingInterval = 3000; tempPollingInterval = 3000; gpuPollingInterval = 3000;