We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e115ba0 commit 5536fc6Copy full SHA for 5536fc6
formatter/flake-module.nix
@@ -3,7 +3,7 @@
3
imports = [ inputs.treefmt-nix.flakeModule ];
4
5
perSystem =
6
- { ... }:
+ { lib, pkgs, ... }:
7
{
8
treefmt = {
9
# Used to find the project root
@@ -14,7 +14,8 @@
14
"non-critical-infra/secrets/*"
15
];
16
17
- programs.actionlint.enable = true;
+ # older actionlint version don't recognize aarch64 builder
18
+ programs.actionlint.enable = lib.versionAtLeast pkgs.actionlint.version "1.7.7";
19
programs.deno.enable = true;
20
programs.terraform.enable = true;
21
programs.deadnix.enable = true;
0 commit comments