From 177f82a6a6bf48f470b00449135ca2c2e6177cbb Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Thu, 5 Mar 2026 18:36:12 +0100 Subject: [PATCH 1/2] feat: move element to 5th workspace --- modules/linux/home-manager/hyprland.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/linux/home-manager/hyprland.nix b/modules/linux/home-manager/hyprland.nix index 8724578..bce2405 100644 --- a/modules/linux/home-manager/hyprland.nix +++ b/modules/linux/home-manager/hyprland.nix @@ -305,6 +305,7 @@ in { # Move to workspace 5 "workspace 5, match:class ^(vesktop)$" + "workspace 5, match:class ^(Element)$" # Move to workspace 6 "workspace 6, match:class ^(steam)$" From eb0b7efc3c7089a2e83cfb672010096363bcf5aa Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Thu, 5 Mar 2026 18:36:23 +0100 Subject: [PATCH 2/2] feat: install treesitter cli from neovim nightly overlay --- modules/cross-platform/home-manager/neovim.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/cross-platform/home-manager/neovim.nix b/modules/cross-platform/home-manager/neovim.nix index 0123ad6..f59262d 100644 --- a/modules/cross-platform/home-manager/neovim.nix +++ b/modules/cross-platform/home-manager/neovim.nix @@ -41,6 +41,8 @@ pkgs.bash-language-server # for justfile pkgs.just-lsp + # for treesitter + inputs.neovim-nightly-overlay.packages.${pkgs.stdenv.hostPlatform.system}.tree-sitter ]; }; };