14 lines
267 B
Nix
14 lines
267 B
Nix
{ lib, config, ... }:
|
|
|
|
let
|
|
cfg = config.ooknet.desktop.wayland.windowManager.hyprland;
|
|
in
|
|
|
|
{
|
|
config = lib.mkIf cfg.enable {
|
|
wayland.windowManager.hyprland.settings.gestures = {
|
|
workspace_swipe = true;
|
|
workspace_swipe_forever = true;
|
|
};
|
|
};
|
|
}
|