From e2a9c0e59fa9ffb3fa4e4a8849e91a7f6683a71a Mon Sep 17 00:00:00 2001 From: Ivan Golikov Date: Fri, 10 Jan 2025 14:38:55 +0100 Subject: [PATCH] Fixed Ubuntu packages installation --- .local/share/dotfiles/install_dev_tools.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.local/share/dotfiles/install_dev_tools.yml b/.local/share/dotfiles/install_dev_tools.yml index f97859f..b072fff 100644 --- a/.local/share/dotfiles/install_dev_tools.yml +++ b/.local/share/dotfiles/install_dev_tools.yml @@ -4,7 +4,6 @@ common_packages: - neovim - ripgrep - - fd - tree - gcc - fish @@ -15,8 +14,13 @@ - uv brew_packages: + - fd pacman_packages: + - fd + + apt_packages: + - fd-find uv_packages: - aider-chat @@ -64,7 +68,7 @@ when: is_ubuntu become: true ansible.builtin.apt: - pkg: common_packages + pkg: "{{ common_packages }}" cache_valid_time: 3600 - name: Install uv packages