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" ];