From 934411dbcff22b4ed898acb040d0aa4c9b05ff14 Mon Sep 17 00:00:00 2001 From: Wroclaw Date: Mon, 2 Dec 2024 02:27:00 +0100 Subject: [PATCH] shell.nix: use ripdrag from stable --- nix-os/shell.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix-os/shell.nix b/nix-os/shell.nix index bdbd0c8..a48dcd8 100644 --- a/nix-os/shell.nix +++ b/nix-os/shell.nix @@ -18,7 +18,7 @@ let ] ++ old.propagatedBuildInputs; }); aliasDrag = pkgs.writeScriptBin "drag" '' - ${unstablePkgs.ripdrag}/bin/ripdrag -Axd $@ + ${pkgs.ripdrag}/bin/ripdrag -Axd $@ ''; in { @@ -65,7 +65,7 @@ in set vcs_aware true set show_hidden true - alias drag shell ${unstablePkgs.ripdrag}/bin/ripdrag -Axd %p & + alias drag shell ${pkgs.ripdrag}/bin/ripdrag -Axd %p & map drag '';