From 332027bc0ac95d230b8c680dcc44e56f9a3c9339 Mon Sep 17 00:00:00 2001 From: K900 Date: Thu, 5 Feb 2026 19:20:28 +0300 Subject: [PATCH] treewide: use pkgs.lndir instead of pkgs.xorg.lndir Follow the change in nixpkgs. --- modules/files.nix | 2 +- tests/default.nix | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/files.nix b/modules/files.nix index bc96fbe8..e26dbd46 100644 --- a/modules/files.nix +++ b/modules/files.nix @@ -291,7 +291,7 @@ in home-files = pkgs.runCommandLocal "home-manager-files" { - nativeBuildInputs = [ pkgs.xorg.lndir ]; + nativeBuildInputs = [ pkgs.lndir ]; } ( '' diff --git a/tests/default.nix b/tests/default.nix index aa76438c..19d2b0f8 100644 --- a/tests/default.nix +++ b/tests/default.nix @@ -64,9 +64,8 @@ let # Needed by pretty much all tests that have anything to do with fish. babelfish fish + lndir ; - - xorg = super.xorg.overrideScope (self: super: { inherit (pkgs.xorg) lndir; }); }; outer =