56 lines
1.1 KiB
Nix
56 lines
1.1 KiB
Nix
{...}: {
|
|
wayland.windowManager.hyprland.enable = true;
|
|
wayland.windowManager.hyprland.settings = {
|
|
|
|
"$mod" = "SUPER";
|
|
"$term" = "kitty --single-instance";
|
|
"$browser" = "firefox";
|
|
"$bar" = "ags run";
|
|
|
|
bind = [
|
|
"$mod, Return, exec, $terminal"
|
|
"$mod, Q, killactive"
|
|
"$mod, W, exec firefox"
|
|
];
|
|
|
|
general = {
|
|
gaps_in = 2;
|
|
gaps_out = 5;
|
|
border_size = 2;
|
|
col.active_border = "rgba(33ccffee) rgba(00ff99ee) 45deg";
|
|
col.inactive_border = "rgba(595959aa)";
|
|
resize_on_border = false;
|
|
allow_tearing = false;
|
|
layout = "dwindle";
|
|
};
|
|
decoration = {
|
|
rounding = 0;
|
|
rounding_power = 2;
|
|
active_opacity = 1.0;
|
|
inactive_opacity = 1.0;
|
|
shadow = {
|
|
enabled = true;
|
|
range = 4;
|
|
render_power = 3;
|
|
color = "rgba(1a1a1aee)";
|
|
};
|
|
blur = {
|
|
enabled = true;
|
|
size = 3;
|
|
passes = 1;
|
|
vibrancy = 0.1696;
|
|
};
|
|
};
|
|
animations = {
|
|
enabled = true;
|
|
# Animation curves
|
|
bezier = [
|
|
"linear, 0, 0, 1, 1"
|
|
];
|
|
animation = [];
|
|
};
|
|
|
|
|
|
};
|
|
}
|