nix: apply mkPretty to sub-derivations

This commit is contained in:
Qyriad 2026-03-22 15:57:38 +01:00
parent e016c37634
commit bd3ec3a904
2 changed files with 6 additions and 2 deletions

View file

@ -21,7 +21,7 @@
inherit (pkgs) lib;
mkDevShell = dynix: qpkgs.callPackage dynix.mkDevShell { inherit fenixToolchain; };
devShell = mkDevShell dynix;
devShell = mkDevShell dynix |> qpkgs.stdlib.mkStdenvPretty;
byStdenv = lib.mapAttrs (lib.const mkDevShell) dynix.byStdenv;