From 10ba2a54b3077e416eba1cfa86a4a1d85426fc8d Mon Sep 17 00:00:00 2001 From: Sean Buckley Date: Mon, 3 May 2021 00:09:50 -0400 Subject: [PATCH] remove report service --- modules/baseline.nix | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/modules/baseline.nix b/modules/baseline.nix index c5bca38..7ede4f4 100644 --- a/modules/baseline.nix +++ b/modules/baseline.nix @@ -1,4 +1,4 @@ -{ config, pkgs, lib, ... }: +{ config, pkgs, ... }: { time.timeZone = "US/Eastern"; i18n.supportedLocales = [ "en_US.UTF-8/UTF-8" ]; @@ -42,18 +42,6 @@ }; }; - systemd.timers.nixosReport.timerConfig.RandomizedDelaySec = "55min"; - systemd.services.nixosReport = { - startAt = "hourly"; - serviceConfig.Type = "simple"; - serviceConfig.ExecStart = lib.concatStringsSep " " [ - "${pkgs.curl}/bin/curl --silent https://log.bck.me/nixos-report" - "-H 'hostname: ${config.networking.hostName}'" - "-H 'version: ${config.system.nixos.label}'" - "-H 'sconfig: ${builtins.toJSON config.sconfig}'" - ]; - }; - users.users.sean = { isNormalUser = true; extraGroups = [ "wheel" "audio" "video" "networkmanager" "dialout" "input" "wireshark" ];