Files
nix-config/default.nix
Dave Gallant 755ba0ca57 Remove tmux
2025-01-27 17:26:05 -05:00

14 lines
254 B
Nix

let
nix-pre-commit-hooks = import (
builtins.fetchTarball "https://github.com/cachix/git-hooks.nix/tarball/master"
);
in
{
pre-commit-check = nix-pre-commit-hooks.run {
src = ./.;
hooks = {
shellcheck.enable = true;
};
};
}