mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-12-21 19:24:15 +00:00
remove report service
This commit is contained in:
parent
bbfbae51cf
commit
10ba2a54b3
1 changed files with 1 additions and 13 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ config, pkgs, lib, ... }:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
time.timeZone = "US/Eastern";
|
time.timeZone = "US/Eastern";
|
||||||
i18n.supportedLocales = [ "en_US.UTF-8/UTF-8" ];
|
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 = {
|
users.users.sean = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [ "wheel" "audio" "video" "networkmanager" "dialout" "input" "wireshark" ];
|
extraGroups = [ "wheel" "audio" "video" "networkmanager" "dialout" "input" "wireshark" ];
|
||||||
|
|
Loading…
Reference in a new issue