From cba81505552bb0e1d4d35402e1ad7917911009b2 Mon Sep 17 00:00:00 2001 From: Grisha Shipunov Date: Sun, 31 Aug 2025 11:23:03 +0200 Subject: switch to nixpkgs lix --- modules/basic-tools/nix.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'modules/basic-tools') diff --git a/modules/basic-tools/nix.nix b/modules/basic-tools/nix.nix index a67c6a8..c3bc1d7 100644 --- a/modules/basic-tools/nix.nix +++ b/modules/basic-tools/nix.nix @@ -3,8 +3,27 @@ ... }: { + nixpkgs.overlays = [ + (final: prev: { + inherit (final.lixPackageSets.latest) + nixpkgs-review + nix-eval-jobs + nix-fast-build + colmena + ; + }) + ]; + + programs.direnv = { + enable = true; + nix-direnv.enable = true; + nix-direnv.package = pkgs.lixPackageSets.latest.nix-direnv; + + }; nix = { + package = pkgs.lixPackageSets.latest.lix; + extraOptions = '' experimental-features = nix-command flakes narinfo-cache-negative-ttl = 0 -- cgit v1.3.1