mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 04:02:55 +00:00
15 lines
191 B
Nix
15 lines
191 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
config = {
|
|
|
|
services.netdata = {
|
|
enable = true;
|
|
|
|
# Disable local dashboard (unsecured)
|
|
config = { web.mode = "none"; };
|
|
};
|
|
|
|
};
|
|
|
|
}
|