@cryptotaxi247 / infra / commits / cae6b61f

treewide: nix fmt

Martin Weinelt committed Nov 26, 2025 at 19:48 UTC cae6b61f3a9696c5854e68d7f089cf7049d0c22f
5 files changed +7 -7
.github/ISSUE_TEMPLATE/feature_request.md
+2 -2
@@ -1,9 +1,9 @@
1 ---
2 name: Feature request
3 about: Suggest an improvement for this project
4 -title: ''
4 +title: ""
5 labels: enhancement
6 -assignees: ''
6 +assignees: ""
7 ---
8
9 **Is your feature request related to a problem? Please describe.**
.github/ISSUE_TEMPLATE/service_disruption.md
+2 -2
@@ -1,9 +1,9 @@
1 ---
2 name: Service disruption report
3 about: Use this to report service instabilities
4 -title: '<service-name>: '
4 +title: "<service-name>: "
5 labels: bug
6 -assignees: ''
6 +assignees: ""
7 ---
8
9 **Affected service**
lib/service-order.nix
+1 -1
@@ -2,7 +2,7 @@
2 #
3 # Given a set of services, make them run one at a time in a specific
4 # order, on a timer.
5 -{ lib }:
5 +{ }:
6 {
7 # Given a list of systemd service, give each one an After
8 # attribute, so they start in a specific order. The returned
metrics/fastly/flake.nix
+1 -1
@@ -1,6 +1,6 @@
1 {
2 outputs =
3 - { nixpkgs }:
3 + { }:
4 {
5 nixosModules.nix-metrics =
6 { pkgs, ... }:
modules/hydra-mirror.nix
+1 -1
@@ -9,7 +9,7 @@
9 let
10 channels = (import ../channels.nix).channels-with-urls;
11
12 - orderLib = import ../lib/service-order.nix { inherit lib; };
12 + orderLib = import ../lib/service-order.nix { };
13
14 makeUpdateChannel = channelName: mainJob: {
15 name = "update-${channelName}";