From 1d7abbd5454db97e0af51416f4960b3fb64a4773 Mon Sep 17 00:00:00 2001 From: n0099 Date: Sun, 3 Aug 2025 02:29:11 +0000 Subject: [PATCH] htop: add field `M_VIRT` and `TTY` as alias `M_SIZE` has renamed to `M_VIRT` in https://github.com/htop-dev/htop/issues/325 `TTY_NR` has renamed to `TTY` in https://github.com/htop-dev/htop/pull/572 --- modules/programs/htop.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/programs/htop.nix b/modules/programs/htop.nix index 7d683810..dc62373b 100644 --- a/modules/programs/htop.nix +++ b/modules/programs/htop.nix @@ -30,6 +30,7 @@ let PPID = 3; PGRP = 4; SESSION = 5; + TTY = 6; TTY_NR = 6; TPGID = 7; MINFLT = 9; @@ -44,6 +45,7 @@ let NICE = 18; STARTTIME = 20; PROCESSOR = 37; + M_VIRT = 38; M_SIZE = 38; M_RESIDENT = 39; M_SHARE = 40;