11 lines
133 B
Nix
11 lines
133 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
services = {
|
|
glances = {
|
|
enable = true;
|
|
port = 61208;
|
|
extraArgs = [ "--webserver" ];
|
|
};
|
|
};
|
|
}
|