···197197198198- [Zapret](https://github.com/bol-van/zapret), a DPI bypass tool. Available as [services.zapret](option.html#opt-services.zapret.enable).
199199200200+- [Glances](https://github.com/nicolargo/glances), an open-source system cross-platform monitoring tool. Available as [services.glances](option.html#opt-services.glances).
201201+200202## Backward Incompatibilities {#sec-release-24.11-incompatibilities}
201203202204- Nixpkgs now requires Nix 2.3.17 or newer to allow for zstd compressed binary artifacts.
···11+# Glances {#module-serives-glances}
22+33+Glances an Eye on your system. A top/htop alternative for GNU/Linux, BSD, Mac OS
44+and Windows operating systems.
55+66+Visit [the Glances project page](https://github.com/nicolargo/glances) to learn
77+more about it.
88+99+# Quickstart {#module-serives-glances-quickstart}
1010+1111+Use the following configuration to start a public instance of Glances locally:
1212+1313+```nix
1414+{
1515+ services.glances = {
1616+ enable = true;
1717+ openFirewall = true;
1818+ };
1919+};
2020+```