From 3ee5fcfda4114e2fb810081df6d8dd104d40cb82 Mon Sep 17 00:00:00 2001 From: Ivan Golikov Date: Fri, 24 Jan 2025 17:51:38 +0100 Subject: [PATCH] Kitty installation on dev machine --- .local/share/dotfiles/install_dotfiles.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.local/share/dotfiles/install_dotfiles.yml b/.local/share/dotfiles/install_dotfiles.yml index 39df5e9..dfc0565 100644 --- a/.local/share/dotfiles/install_dotfiles.yml +++ b/.local/share/dotfiles/install_dotfiles.yml @@ -11,6 +11,9 @@ - tldr - fzf + common_packages_dev_machine: + - kitty + brew_packages: - neovim - difftastic @@ -65,6 +68,12 @@ packages: "{{ common_packages + apt_packages }}" when: is_ubuntu + - name: Get really full package list + ansible.builtin.set_fact: + packages: "{{ common_packages_dev_machine + packages }}" + tags: + - dev_tools + - name: Install packages (macOS) community.general.homebrew: name: "{{ packages }}"