first commit

This commit is contained in:
CronyAkatsuki 2025-10-30 09:47:14 +01:00
commit 8e878042dd
16 changed files with 1204 additions and 0 deletions

15
shell.nix Normal file
View file

@ -0,0 +1,15 @@
{
pkgs ? import <nixpkgs> {},
pre-commit-hooks,
}: let
pre-commit-check = pre-commit-hooks.lib.${pkgs.system}.run {
src = ./.;
hooks = {
alejandra.enable = true;
};
};
in
pkgs.mkShell {
inherit (pre-commit-check) shellHook;
name = "lnxlink";
}