dot

NixOS dotfiles
git clone https://git.echoz.io/dot.git
Log | Files | Refs

commit 961ba276b7b5b308e717b848172bbce2fc6cf8e6
parent 00fc38b7cc9e8836afa878b7fbe24042319c053f
Author: Chris <chris@echoz.io>
Date:   Sun, 22 Feb 2026 11:11:11 +0100

feat(hyprland): adjust gaps and remove borders in favor of dimming out of focus windows

Diffstat:
Mmodules/hypr/hyprland.nix | 7+++++--
Mmodules/hypr/hyprpaper.nix | 19++++++++-----------
2 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/modules/hypr/hyprland.nix b/modules/hypr/hyprland.nix @@ -33,8 +33,8 @@ general = { gaps_in = 5; - gaps_out = 20; - border_size = 2; + gaps_out = 10; + border_size = 0; "col.active_border" = "rgba(00000000) ${style.colors.fg.rgbaHex} rgba(00000000) 45deg"; "col.inactive_border" = "rgba(00000000)"; layout = "dwindle"; @@ -49,6 +49,9 @@ passes = 3; new_optimizations = true; }; + dim_inactive = true; + dim_strength = 0.1; + dim_special = 0.1; }; animations = { diff --git a/modules/hypr/hyprpaper.nix b/modules/hypr/hyprpaper.nix @@ -1,15 +1,12 @@ { style, user, ... }: { - config = { - - home-manager.users.${user}.services.hyprpaper = { - enable = true; - settings.wallpaper = [ - { - monitor = ""; - path = style.wallpaper; - } - ]; - }; + home-manager.users.${user}.services.hyprpaper = { + enable = true; + settings.wallpaper = [ + { + monitor = ""; + path = style.wallpaper; + } + ]; }; }