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

14 lines
320 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}; [
hyprscrolling
hyprspace
hyprsunset
HyprEasymotion
];
};
}