From 757ebd62d153dc404f82c597984d7271ec2adba0 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Wed, 23 Oct 2024 17:24:37 +0200 Subject: feat(modules/nix): Switch to `lix` `nix` is currently constantly failing to open some of the sqlite databases, which is just really obnoxious. Although, as I have later found out, this is caused by a `bindfs` fuse mount on `~/.cache`. This process is running against the `1024` open fd soft limit, and thus refusing to open another one for the database. --- modules/by-name/ni/nix/module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/by-name/ni') diff --git a/modules/by-name/ni/nix/module.nix b/modules/by-name/ni/nix/module.nix index 980bbd39..767ab076 100644 --- a/modules/by-name/ni/nix/module.nix +++ b/modules/by-name/ni/nix/module.nix @@ -8,7 +8,7 @@ ... }: { nix = { - package = pkgs.nixVersions.latest; + package = pkgs.lix; # Disable nix channels (this is a remnant of old days) channel.enable = false; -- cgit 1.4.1