feat(flake): switch to treefmt-nix
All checks were successful
/ check (push) Successful in 24s
/ build (audiomenu) (push) Successful in 2s
/ build (docs) (push) Successful in 2s
/ build (jpassmenu) (push) Successful in 2s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 2s
/ build (nvim) (push) Successful in 2s

This allows me to remove all checks and replace them with treefmt-nix
This commit is contained in:
Jalil David Salamé Messina 2024-10-15 22:05:55 +02:00
parent f2530d1010
commit 002c74ca1b
Signed by: jalil
GPG key ID: F016B9E770737A0B
4 changed files with 22 additions and 32 deletions

View file

@ -1,26 +0,0 @@
{ lib, ... }:
{
perSystem =
{ pkgs, self', ... }:
{
checks =
let
src = builtins.path {
path = ../.;
name = "configuration.nix";
};
runCmdInSrc =
name: cmd:
pkgs.runCommandNoCC name { } ''
cd ${src}
${cmd}
mkdir $out
'';
in
{
fmt = runCmdInSrc "fmt-src" "${lib.getExe self'.formatter} --check .";
lint = runCmdInSrc "lint-src" "${lib.getExe pkgs.statix} check .";
typos = runCmdInSrc "typos-src" "${lib.getExe pkgs.typos} .";
};
};
}

View file

@ -4,7 +4,8 @@ let
in
{
imports = [
./checks.nix
inputs.treefmt-nix.flakeModule
./devshells.nix
./docs.nix
./example-vm.nix
@ -15,11 +16,19 @@ in
];
perSystem =
{ system, pkgs, ... }:
{ system, ... }:
{
_module.args.pkgs = import inputs.nixpkgs { inherit system overlays; };
# Nix files formatter (run `nix fmt`)
formatter = pkgs.nixfmt-rfc-style;
# Setup formatters
treefmt = {
projectRootFile = "flake.nix";
programs = {
nixfmt.enable = true;
rustfmt.enable = true;
statix.enable = true;
typos.enable = true;
};
};
};
}