mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-09 09:13:58 +00:00
11 lines
196 B
Nix
11 lines
196 B
Nix
{ config, ... }:
|
|
let
|
|
cfg = config.module.wm.hyprland;
|
|
in
|
|
{
|
|
wayland.windowManager.hyprland.settings = {
|
|
layerrule = [ "noanim, notifications" ];
|
|
windowrulev2 = [ ] ++ cfg.rules;
|
|
};
|
|
}
|