31 lines
540 B
Nix
31 lines
540 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
wayland.windowManager.hyprland = {
|
|
plugins = [
|
|
pkgs.hyprlandPlugins.hyprscrolling
|
|
];
|
|
|
|
extraConfig = lib.mkAfter ''
|
|
############################
|
|
# Hyprscrolling (scrolling layout)
|
|
############################
|
|
|
|
general {
|
|
layout = scrolling
|
|
}
|
|
|
|
# hyprscrolling uses plugin:hyprscrolling
|
|
plugin:hyprscrolling {
|
|
# examples; tune to taste
|
|
# column_width = 0.70
|
|
# fullscreen_on_one_column = 1
|
|
}
|
|
'';
|
|
};
|
|
}
|