Files
nixos/henrovnix_ok/home/desktop/hyprscrolling.nix
T
2026-03-03 11:43:21 +01:00

10 lines
225 B
Nix

{ config, lib, pkgs, flakeRoot, inputs, ... }:
{
wayland.windowManager.hyprland = {
enable = true;
plugins = with inputs.hyprland-nix.packages.${pkgs.stdenv.hostPlatform.system}; [
hyprscrolling
];
};
}