chore: set up more checks through Nix

This commit is contained in:
Marc Plano-Lesay 2025-05-05 20:42:22 +10:00
parent 0b561cbbc3
commit 0fa3e8f485
Signed by: kernald
GPG key ID: 66A41B08CC62A6CF

View file

@ -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 = {