diff --git a/flake.lock b/flake.lock index 97bdbe1..ab99b6a 100644 --- a/flake.lock +++ b/flake.lock @@ -23,11 +23,11 @@ ] }, "locked": { - "lastModified": 1734093295, - "narHash": "sha256-hSwgGpcZtdDsk1dnzA0xj5cNaHgN9A99hRF/mxMtwS4=", + "lastModified": 1734344598, + "narHash": "sha256-wNX3hsScqDdqKWOO87wETUEi7a/QlPVgpC/Lh5rFOuA=", "owner": "nix-community", "repo": "home-manager", - "rev": "66c5d8b62818ec4c1edb3e941f55ef78df8141a8", + "rev": "83ecd50915a09dca928971139d3a102377a8d242", "type": "github" }, "original": { diff --git a/hosts/chunk/grafana.nix b/hosts/chunk/grafana.nix index 5bfdb07..15e8223 100644 --- a/hosts/chunk/grafana.nix +++ b/hosts/chunk/grafana.nix @@ -1,4 +1,4 @@ -{config,...}: { +{config, ...}: { services.grafana = { enable = true; settings.server = { @@ -16,15 +16,17 @@ exporters = { node = { enable = true; - enabledCollectors = [ "systemd" ]; + enabledCollectors = ["systemd"]; }; }; scrapeConfigs = [ { job_name = "chrysalis"; - static_configs = [{ - targets = ["127.0.0.1:${toString config.services.prometheus.exporters.node.port}"]; - }]; + static_configs = [ + { + targets = ["127.0.0.1:${toString config.services.prometheus.exporters.node.port}"]; + } + ]; } ]; }; diff --git a/hosts/ytnix/default.nix b/hosts/ytnix/default.nix index ac980a2..72c495b 100644 --- a/hosts/ytnix/default.nix +++ b/hosts/ytnix/default.nix @@ -85,12 +85,12 @@ "node.name" = "bluez_output.*"; } ]; - }; - actions = { + }; + actions = { update-props = { "session.suspend-timeout-seconds" = 0; }; - }; + }; }; };