1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-09 09:13:58 +00:00
ultima/modules/home/wm/hyprland/rules.nix
2024-12-21 22:25:04 +09:00

11 lines
196 B
Nix

{ config, ... }:
let
cfg = config.module.wm.hyprland;
in
{
wayland.windowManager.hyprland.settings = {
layerrule = [ "noanim, notifications" ];
windowrulev2 = [ ] ++ cfg.rules;
};
}