initial commit

This commit is contained in:
2026-02-06 13:52:54 +01:00
commit e74b485510
10 changed files with 851 additions and 0 deletions

8
checks/default.nix Normal file
View File

@@ -0,0 +1,8 @@
{ pkgs }:
{
formatting = pkgs.runCommand "check-formatting" { buildInputs = [ pkgs.nixfmt-rfc-style ]; } ''
cd ${./..}
nixfmt --check flake.nix pkgs checks devshells overlays
touch $out
'';
}