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

14 lines
392 B
Nix

{ config, lib, pkgs, flakeRoot, inputs, ... }:
{
home.packages = with pkgs; [ jq ];
wayland.windowManager.hyprland = {
enable = true;
plugins = with inputs.hyprland-plugins.packages.${pkgs.system}; [
hyprland-plugins-hyprscrolling
hyprland-plugins-hyprspace
hyprland-plugins-hyprsunset
hyprland-plugins-HyprEasymotion
];
};
}