mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2026-05-28 17:21:12 +02:00
12 lines
249 B
Nix
12 lines
249 B
Nix
{ config, ... }:
|
|
{
|
|
services.scrutiny.collector = {
|
|
enable = !config.services.qemuGuest.enable;
|
|
settings = {
|
|
version = 1;
|
|
host.id = config.networking.hostName;
|
|
api.endpoint = "https://scrutiny.pvv.ntnu.no/";
|
|
};
|
|
};
|
|
}
|