mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-12 18:56:59 +01:00
Fixes all code blocks with "nix" language in markdown files for syntax errors to be able to run nixfmt in the next step.
21 lines
464 B
Markdown
21 lines
464 B
Markdown
# Glances {#module-serives-glances}
|
|
|
|
Glances an Eye on your system. A top/htop alternative for GNU/Linux, BSD, Mac OS
|
|
and Windows operating systems.
|
|
|
|
Visit [the Glances project page](https://github.com/nicolargo/glances) to learn
|
|
more about it.
|
|
|
|
# Quickstart {#module-serives-glances-quickstart}
|
|
|
|
Use the following configuration to start a public instance of Glances locally:
|
|
|
|
```nix
|
|
{
|
|
services.glances = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
};
|
|
}
|
|
```
|