From 6c4b0d8f450aef31b0a9b2944b3547d8028c6061 Mon Sep 17 00:00:00 2001 From: phorcys420 <57866459+phorcys420@users.noreply.github.com> Date: Mon, 24 Aug 2026 20:50:06 +0000 Subject: [PATCH] feat(configuration.nix): use Lix as the system Nix distribution Set nix.package to pkgs.lix so the daemon, nixos-rebuild, and the nix CLI run Lix instead of upstream CppNix. Lix comes from the already-pinned nixpkgs (2.93.4), so this needs no new flake input or from-source build. --- configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configuration.nix b/configuration.nix index 3b4fe14..594a9f8 100644 --- a/configuration.nix +++ b/configuration.nix @@ -387,6 +387,11 @@ in gnomeExtensions.no-overview ]; + # Use Lix (a drop-in Nix reimplementation) as the system Nix distribution + # instead of upstream CppNix. pkgs.lix comes from the pinned nixpkgs above, + # so this swaps the daemon, nixos-rebuild, and the `nix` CLI without adding + # a flake input or a from-source build. + nix.package = pkgs.lix; nix.settings.experimental-features = [ "nix-command" "flakes"