diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-10-23 17:24:37 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-10-24 14:40:32 +0200 |
commit | 757ebd62d153dc404f82c597984d7271ec2adba0 (patch) | |
tree | 04dc0391a9c5d49cfdf167471dcff4a5dadf6347 /pkgs/by-name | |
parent | fix(modules/zsh): Support completion again (diff) | |
download | nixos-config-757ebd62d153dc404f82c597984d7271ec2adba0.tar.gz nixos-config-757ebd62d153dc404f82c597984d7271ec2adba0.zip |
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.
Diffstat (limited to 'pkgs/by-name')
-rw-r--r-- | pkgs/by-name/fu/fupdate/package.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/by-name/fu/fupdate/package.nix b/pkgs/by-name/fu/fupdate/package.nix index eef9e7b2..66372add 100644 --- a/pkgs/by-name/fu/fupdate/package.nix +++ b/pkgs/by-name/fu/fupdate/package.nix @@ -1,7 +1,7 @@ { sysLib, dash, - nixVersions, + lix, gnugrep, fd, coreutils, @@ -17,7 +17,7 @@ sysLib.writeShellScript { keepPath = true; dependencies = [ dash - nixVersions.latest + lix gnugrep fd coreutils |