2024-10-07 11:42:34 -04:00
|
|
|
{ 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
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|