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

14 lines
353 B
Nix

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