From 0fa3e8f4857d3270e355e5f228350930b1b53e4e Mon Sep 17 00:00:00 2001 From: Marc Plano-Lesay Date: Mon, 5 May 2025 20:42:22 +1000 Subject: [PATCH] chore: set up more checks through Nix --- flake.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/flake.nix b/flake.nix index 53cbae9..5310c46 100644 --- a/flake.nix +++ b/flake.nix @@ -40,6 +40,9 @@ # TOML check-toml.enable = true; + # YAML + check-yaml.enable = true; + # Nix deadnix.enable = true; flake-checker.enable = true; @@ -57,6 +60,14 @@ pkg-config ]; }; + rustfmt.enable = true; + cargo-check = { + enable = true; + extraPackages = with pkgs; [ + pkg-config + openssl + ]; + }; # SQL sqlfluff = {