Personal Nix flake
nixos home-manager nix
1
fork

Configure Feed

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

feat: Add nixtests to flake checks

+15
+1
nix/checks/default.nix
··· 1 1 {...}: { 2 2 imports = [ 3 3 ./homeConfigurations.nix 4 + ./nixtest.nix 4 5 ]; 5 6 }
+14
nix/checks/nixtest.nix
··· 1 + { 2 + perSystem = { 3 + lib, 4 + pkgs, 5 + self', 6 + ... 7 + }: { 8 + checks.nixtests = pkgs.runCommandLocal "nixtests-run" {} '' 9 + ${lib.getExe self'.legacyPackages."nixtests:run"} \ 10 + --snapshot-dir ${../tests/_snapshots} \ 11 + > $out 12 + ''; 13 + }; 14 + }