1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-09 19:23:52 +00:00
ultima/modules/home/wm/hyprland/rules.nix

11 lines
196 B
Nix
Raw Normal View History

{ config, ... }:
2024-12-21 13:25:04 +00:00
let
cfg = config.module.wm.hyprland;
in
{
2024-12-21 13:25:04 +00:00
wayland.windowManager.hyprland.settings = {
2024-12-03 14:20:37 +00:00
layerrule = [ "noanim, notifications" ];
2024-12-21 13:25:04 +00:00
windowrulev2 = [ ] ++ cfg.rules;
2024-11-21 09:24:15 +00:00
};
}