disable actionlint until next NixOS release
Jörg Thalheim committed
Jan 31, 2025 at 11:37 UTC
5536fc6d6c86be2db75dc3b10630d3a73f60191e
1 file changed
+3
-2
formatter/flake-module.nix
+3
-2
@@ -3,7 +3,7 @@
3
imports = [ inputs.treefmt-nix.flakeModule ];
4
5
perSystem =
6
- { ... }:
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;
17
+ # 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;