Files
nixos/henrovnix_ok/home/desktop/hyprscrolling.nix
T
2026-03-02 19:37:25 +01:00

14 lines
516 B
Nix

{ 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
];
};
}