diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-02-02 21:27:42 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-02-02 21:27:42 +0100 |
commit | b1fab1f784ff0cd0e14bc3a53c270fe9ce1cfc35 (patch) | |
tree | 73376af93158a5926bd56099be704aa035e4c15b | |
parent | style(pkgs/update-vim-plugins): Format (diff) | |
download | nixos-config-b1fab1f784ff0cd0e14bc3a53c270fe9ce1cfc35.zip |
fix(modules/lf/commands/trash_restore): Depend on `gawk` not `gaw`
-rw-r--r-- | modules/by-name/lf/lf/commands/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/by-name/lf/lf/commands/default.nix b/modules/by-name/lf/lf/commands/default.nix index f042a7a8..9a709168 100644 --- a/modules/by-name/lf/lf/commands/default.nix +++ b/modules/by-name/lf/lf/commands/default.nix @@ -147,7 +147,7 @@ in { }; trash_restore = shell { name = "trash_restore"; - dependencies = with pkgs; [conceal fzf gaw trashy]; + dependencies = with pkgs; [conceal fzf gawk trashy]; }; view_file = async { |