summaryrefslogtreecommitdiffstats
path: root/hyprland/hyprland.nix
diff options
context:
space:
mode:
authorAndrew <admonty1@protonmail.com>2025-08-18 19:17:30 -0400
committerAndrew <admonty1@protonmail.com>2025-08-18 19:17:30 -0400
commitf0c9f39bd7a23927176fad4105dfa307ef82ef64 (patch)
tree84cd693fe7994d7853b053a93ad80f672fe30846 /hyprland/hyprland.nix
parentadd hyprland binds (diff)
downloadnixos-f0c9f39bd7a23927176fad4105dfa307ef82ef64.tar.gz
nixos-f0c9f39bd7a23927176fad4105dfa307ef82ef64.tar.bz2
nixos-f0c9f39bd7a23927176fad4105dfa307ef82ef64.zip
smart gaps
Diffstat (limited to 'hyprland/hyprland.nix')
-rw-r--r--hyprland/hyprland.nix16
1 files changed, 12 insertions, 4 deletions
diff --git a/hyprland/hyprland.nix b/hyprland/hyprland.nix
index f44a62a..2a9e06f 100644
--- a/hyprland/hyprland.nix
+++ b/hyprland/hyprland.nix
@@ -1,10 +1,10 @@
{ config, pkgs, ... }:
{
-
-imports = [
- ./binds.nix
-];
+
+ imports = [
+ ./binds.nix
+ ];
wayland.windowManager.hyprland = {
enable = true;
settings = {
@@ -31,6 +31,8 @@ imports = [
"8, monitor:DP-2"
"9, monitor:DP-2"
"0, monitor:DP-2"
+ "w[tv1], gapsout:0, gapsin:0"
+ "f[1], gapsout:0, gapsin:0"
];
exec-once = [
"xrandr --output DP-3 --primary"
@@ -44,7 +46,13 @@ imports = [
windowrule = [
"workspace 7 silent, class:(discord)"
"workspace 8 silent, class:(steam)"
+ "bordersize 0, floating:0, onworkspace:w[tv1]"
+ "rounding 0, floating:0, onworkspace:w[tv1]"
+ "bordersize 0, floating:0, onworkspace:f[1]"
+ "rounding 0, floating:0, onworkspace:f[1]"
];
+
+
};
};