Files
nixos/apps/hyprland/hypr/layers.nix
T
2026-01-02 07:57:34 -06:00

13 lines
251 B
Nix

{pkgs, ...}: {
wayland.windowManager.hyprland.settings = {
layerrule = [
# Blur and transparency for vicinae
"blur, vicinae"
"ignorealpha 0, vicinae"
# Disable animation for vicinae
"noanim, vicinae"
];
};
}