htop: fix configure.am error with --enable-sensors

Commit 23c81659b5de67f4cf032e31c024a8b1a283fc45 didn't get the configure flag quite right. According to https://github.com/htop-dev/htop/blob/main/configure.ac#L671, it's `--enable-sensors`, not `--with-sensors`.

I tested this out locally with

```
programs.htop = {
enable = true;
package = pkgs.htop.overrideAttrs (prev: {
configureFlags = [
"--enable-unicode"
"--sysconfdir=/etc"
"--enable-affinity"
"--enable-capabilities"
"--enable-delayacct"
"--enable-sensors"
];
});
};
```

authored by philiptaron.tngl.sh and committed by GitHub 127ea2d8 1b6fe2b3

+1 -1
+1 -1
pkgs/tools/system/htop/default.nix
··· 37 "--enable-capabilities" 38 "--enable-delayacct" 39 ] 40 - ++ lib.optional sensorsSupport "--with-sensors" 41 ; 42 43 postFixup =
··· 37 "--enable-capabilities" 38 "--enable-delayacct" 39 ] 40 + ++ lib.optional sensorsSupport "--enable-sensors" 41 ; 42 43 postFixup =