This repository has no description
0

Configure Feed

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

1{ inputs, ... }: 2{ 3 imports = [ inputs.make-shell.flakeModules.default ]; 4 5 perSystem = 6 { pkgs, ... }: 7 { 8 make-shells.default = { 9 stdenv = pkgs.stdenvNoCC; 10 }; 11 12 make-shells.ci = { 13 stdenv = pkgs.stdenvNoCC; 14 packages = with pkgs; [ 15 attic-client 16 jq 17 nix-eval-jobs 18 nix-fast-build 19 ]; 20 }; 21 }; 22}