My personal website
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: add nix checks

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>

+6
+1
flake.nix
··· 16 16 imports = [ 17 17 inputs.pre-commit-hooks.flakeModule 18 18 19 + ./nix/checks.nix 19 20 ./nix/dev.nix 20 21 ./nix/packages.nix 21 22 ];
+5
nix/checks.nix
··· 1 + {lib, ...}: { 2 + perSystem = {config, ...}: { 3 + checks = lib.mapAttrs' (n: lib.nameValuePair "package-${n}") config.packages; 4 + }; 5 + }