feat(defaults/lix): use latest lix for nix.settings.log-format

This commit is contained in:
Elec3137 2026-03-31 11:36:33 -07:00
commit f46376e389

View file

@ -17,11 +17,11 @@ in
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
# use lix, a fork of nix # use lix, a fork of nix
# see: https://lix.systems/about # see: https://lix.systems/about
nix.package = pkgs.lixPackageSets.stable.lix; nix.package = pkgs.lixPackageSets.lix_2_95.lix;
# overlays so that all nix tools use lix # overlays so that all nix tools use lix
nixpkgs.overlays = [ nixpkgs.overlays = [
(final: prev: { (final: prev: {
inherit (prev.lixPackageSets.stable) inherit (prev.lixPackageSets.lix_2_95)
nixpkgs-review nixpkgs-review
nix-eval-jobs nix-eval-jobs
nix-fast-build nix-fast-build
@ -29,5 +29,6 @@ in
; ;
}) })
]; ];
nix.settings.log-format = "multiline-with-logs";
}; };
} }