about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-06-28 18:57:30 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-06-28 18:57:30 +0200
commit2ed38548c3496c8e365213a7e11cf159045ee279 (patch)
tree0c2cce006fc2f89769a0fb528473979a769c2e78
parentpkgs/i3bar-river-patched: Remove rustc-1.86 compatibility patch (diff)
downloadnixos-config-2ed38548c3496c8e365213a7e11cf159045ee279.zip
modules/nix: Temporarily switch to cppnix
Both (lix and cppnix) have a fix for some rather serious CVEs. But lix
also introduced a rather serious system breaking bug. So we need to
update to something that works now, and I'm not really motivated to
apply the patches for the lix bug manually.
-rw-r--r--modules/by-name/ni/nix/module.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/by-name/ni/nix/module.nix b/modules/by-name/ni/nix/module.nix
index 2b91f59b..40a84539 100644
--- a/modules/by-name/ni/nix/module.nix
+++ b/modules/by-name/ni/nix/module.nix
@@ -18,7 +18,8 @@
   # TODO(@bpeetz): Modularize <2025-02-08>
 
   nix = {
-    package = pkgs.lixPackageSets.latest.lix;
+    # TODO(@bpeetz): Switch back to lix, once they fix their correctness bug. <2025-06-28>
+    package = pkgs.nix;
 
     # Disable nix channels  (this is a remnant of old days)
     channel.enable = false;