NixOS-Config/home/sway/swayfx/default.nix

14 lines
336 B
Nix
Raw Normal View History

{ pkgs, ... }: {
2024-08-24 22:16:51 -04:00
# Enable Sway and write some scripts
wayland.windowManager.sway = {
package = pkgs.unstable.sway;
extraConfig = ''
blur enable
blur_passes 3
blur_radius 5
layer_effects 'rofi' blur enable
layer_effects 'notifications' blur enable; blur_ignore_transparent enable
'';
};
}