Personal-use NixOS configuration
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add netdata agent

encode42 8da23df3 62f7c2ad

+23
+11
hosts/index/config/netdata-agent.nix
··· 1 + { flakeRoot, ... }: 2 + 3 + { 4 + imports = [ 5 + (flakeRoot + /packages/server/netdata-agent.nix) 6 + ]; 7 + 8 + services.netdata = { 9 + claimTokenFile = "/mnt/apps/netdata/.claim-token"; 10 + }; 11 + }
+1
hosts/index/default.nix
··· 22 22 23 23 (flakeRoot + /packages/server/iperf.nix) 24 24 25 + ./config/netdata-agent.nix 25 26 ./config/zfs.nix 26 27 ./config/nfs.nix 27 28
+2
modules/server/filesystem/zfs.nix
··· 38 38 }; 39 39 }; 40 40 }; 41 + 42 + services.netdata.config.plugins = { "go.d" = "yes"; }; 41 43 }
+9
packages/server/netdata-agent.nix
··· 1 + { pkgs, ... }: 2 + 3 + { 4 + services.netdata = { 5 + enable = true; 6 + 7 + package = pkgs.netdataCloud; 8 + }; 9 + }