Added most config, at least enough to get by for now Update waybar config to remove hyprland-specific things Misc updates to rofi, swaylock Set greetd to start sway on machines by default now
19 lines
382 B
Nix
19 lines
382 B
Nix
{pkgs, ...}: {
|
|
imports = [./default.nix];
|
|
wayland.windowManager.sway = {
|
|
package = pkgs.swayfx;
|
|
extraConfig = ''
|
|
corner_radius 10
|
|
blur enable
|
|
blur_xray disable
|
|
blur_passes 3
|
|
blur_radius 5
|
|
corner_radius 10
|
|
shadows enable
|
|
shadow_blur_radius 4
|
|
titlebar_separator enable
|
|
scratchpad_minimize disable
|
|
'';
|
|
};
|
|
}
|