From 2482182a1cd2cd29b222c7b6783f85cd010b94c1 Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Sun, 4 Aug 2024 17:06:58 -0400 Subject: [PATCH] logs: add launchd logs Also turn off ipfs --- nix/base-system/darwin-configuration.nix | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/nix/base-system/darwin-configuration.nix b/nix/base-system/darwin-configuration.nix index 417ecf4..e593926 100644 --- a/nix/base-system/darwin-configuration.nix +++ b/nix/base-system/darwin-configuration.nix @@ -32,17 +32,17 @@ in ]; # TODO(zaphar): Move this to a module. - launchd.user.agents.ipfs = { - serviceConfig = { - ProgramArguments = [ - "${pkgs.kubo}/bin/ipfs" - "daemon" - "--init" - ]; - KeepAlive = true; - RunAtLoad = true; - }; - }; + #launchd.user.agents.ipfs = { + # serviceConfig = { + # ProgramArguments = [ + # "${pkgs.kubo}/bin/ipfs" + # "daemon" + # "--init" + # ]; + # KeepAlive = true; + # RunAtLoad = true; + # }; + #}; services.durnitisp.enable = true; services.node-exporter.enable = true; @@ -242,6 +242,7 @@ in type = "file"; include = [ "/var/log/system.log" + "/var/log/com.apple.xpc.launchd/launchd.log" ]; }; };