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