From fa50eb4f8dfb94b5deef4a4530fd245e58ac99ac Mon Sep 17 00:00:00 2001 From: Henro Veijer Date: Mon, 2 Mar 2026 19:37:18 +0100 Subject: [PATCH] { config, lib, pkgs, flakeRoot, inputs, ... }: { home.packages = with pkgs; [ jq ]; wayland.windowManager.hyprland = { enable = true; plugins = [ inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}.hyprscroll inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}.hyprspace inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}.hyprsunset inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}.hypr-easymotion ]; }; } --- henrovnix_ok/README.org | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/henrovnix_ok/README.org b/henrovnix_ok/README.org index dbbdd3cd9..25c3a8c4b 100755 --- a/henrovnix_ok/README.org +++ b/henrovnix_ok/README.org @@ -1749,12 +1749,12 @@ This Nix module integrates the hyprscrolling plugin into a Home-Manager managed home.packages = with pkgs; [ jq ]; wayland.windowManager.hyprland = { enable = true; - plugins = with inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}; [ - hyprland-plugins-hyprscrolling - hyprland-plugins-hyprspace - hyprland-plugins-hyprsunset - hyprland-plugins-HyprEasymotion - ]; + plugins = [ + inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}.hyprscroll + inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}.hyprspace + inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}.hyprsunset + inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}.hypr-easymotion + ]; }; } #+end_src