refactor(nix): use pre-commit flake module

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2023-09-04 08:52:56 +02:00
parent bbf4e3b04d
commit 2918d61b16
No known key found for this signature in database
GPG Key ID: E13DFD4B47127951
2 changed files with 19 additions and 21 deletions

View File

@ -25,6 +25,8 @@
{inherit inputs;} {inherit inputs;}
{ {
imports = [ imports = [
inputs.pre-commit-hooks.flakeModule
./nix/dev.nix ./nix/dev.nix
./nix/distribution.nix ./nix/distribution.nix
]; ];

View File

@ -1,37 +1,33 @@
{ {
inputs,
self,
...
}: {
perSystem = { perSystem = {
system, config,
lib,
pkgs, pkgs,
... ...
}: { }: {
checks = { pre-commit.settings = {
pre-commit-check = inputs.pre-commit-hooks.lib.${system}.run { hooks = {
src = self; markdownlint.enable = true;
hooks = {
markdownlint.enable = true;
alejandra.enable = true; alejandra.enable = true;
deadnix.enable = true; deadnix.enable = true;
nil.enable = true; nil.enable = true;
clang-format = { clang-format = {
enable = true; enable = true;
types_or = ["c" "c++" "java" "json" "objective-c"]; types_or = ["c" "c++" "java" "json" "objective-c"];
};
}; };
tools.clang-tools = pkgs.clang-tools_16;
}; };
tools.clang-tools = lib.mkForce pkgs.clang-tools_16;
}; };
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {
inherit (self.checks.${system}.pre-commit-check) shellHook; shellHook = ''
${config.pre-commit.installationScript}
'';
inputsFrom = [self.packages.${system}.prismlauncher-unwrapped]; inputsFrom = [config.packages.prismlauncher-unwrapped];
buildInputs = with pkgs; [ccache ninja]; buildInputs = with pkgs; [ccache ninja];
}; };