summaryrefslogtreecommitdiffstats
path: root/hyprland/hyprland.nix
diff options
context:
space:
mode:
authorAndrew <admonty1@protonmail.com>2025-08-30 14:31:44 -0400
committerAndrew <admonty1@protonmail.com>2025-08-30 14:31:44 -0400
commit5de7d9eac70506027d1084bb6af3b4a6fcb1eed0 (patch)
tree3346aa9ff72c4093ead09c1268b23e7a067136a2 /hyprland/hyprland.nix
parentchange some stuff in neovim config (diff)
downloadnixos-5de7d9eac70506027d1084bb6af3b4a6fcb1eed0.tar.gz
nixos-5de7d9eac70506027d1084bb6af3b4a6fcb1eed0.tar.bz2
nixos-5de7d9eac70506027d1084bb6af3b4a6fcb1eed0.zip
change waybar to match new workspace config
Diffstat (limited to '')
-rw-r--r--hyprland/hyprland.nix70
1 files changed, 32 insertions, 38 deletions
diff --git a/hyprland/hyprland.nix b/hyprland/hyprland.nix
index 4ac79db..19000e9 100644
--- a/hyprland/hyprland.nix
+++ b/hyprland/hyprland.nix
@@ -1,7 +1,8 @@
-{ config, pkgs, ... }:
-
{
-
+ config,
+ pkgs,
+ ...
+}: {
imports = [
./binds.nix
];
@@ -9,12 +10,12 @@
enable = true;
systemd.enable = false;
settings = {
-env = [
- "EDITOR,nvim"
- "VISUAL,nvim"
- "HYPRCURSOR_THEME,Bibata-Original-Classic"
- "HYPRCURSOR_SIZE,24"
-];
+ env = [
+ "EDITOR,nvim"
+ "VISUAL,nvim"
+ "HYPRCURSOR_THEME,Bibata-Original-Classic"
+ "HYPRCURSOR_SIZE,24"
+ ];
monitor = [
"DP-3,2560x1440@180.00,0x0,1"
"DP-2,1920x1080@165.00,2560x360,1"
@@ -24,49 +25,42 @@ env = [
kb_options = "caps:escape,altwin:swap_lalt_lwin";
numlock_by_default = true;
-
};
workspace = [
- "1, monitor:DP-3" # term
- "2, monitor:DP-2" # browser
- "3, monitor:DP-3" # music
- "4, monitor:DP-2" # discord
- "5, monitor:DP-3" # games
- "6, monitor:DP-2" # password manager
+ "1, monitor:DP-3"
+ "2, monitor:DP-2"
+ "3, monitor:DP-3"
+ "4, monitor:DP-2"
+ "5, monitor:DP-3"
+ "6, monitor:DP-2"
"7, monitor:DP-2"
- "8, monitor:DP-2" # steam
- "9, monitor:DP-3" # notes
+ "8, monitor:DP-2"
+ "9, monitor:DP-3"
"10, monitor:DP-2"
- "w[tv1], gapsout:0, gapsin:0"
- "f[1], gapsout:0, gapsin:0"
+ "w[tv1], gapsout:0, gapsin:0"
+ "f[1], gapsout:0, gapsin:0"
];
exec-once = [
"xrandr --output DP-3 --primary"
- "uwsm app -- waybar"
+ "uwsm app -- waybar"
"[workspace 1 silent] uwsm app -- ghostty"
"[workspace 2 silent] uwsm app -- brave"
- "[workspace 3 silent] uwsm app -- ghostty -e fish -c rmpc"
- "[workspace 4 silent] uwsm app -- discord"
- "[workspace 6 silent] uwsm app -- keepassxc"
- "[workspace 8 silent] uwsm app -- steam"
- "[workspace 9 silent] uwsm app -- obsidian"
+ #"[workspace 3 silent] uwsm app -- ghostty -e fish -c rmpc"
+ "[workspace 3 silent] uwsm app -- discord"
+ "[workspace 4 silent] uwsm app -- keepassxc"
+ #"[workspace 8 silent] uwsm app -- steam"
+ #"[workspace 9 silent] uwsm app -- obsidian"
];
windowrule = [
- "workspace 4 silent, class:(discord)"
- "workspace 8 silent, class:(steam)"
- "workspace 8 silent, class:(steam)"
-
+ "workspace 3 silent, class:(discord)"
+ "workspace 6 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]"
+ "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]"
];
-
-
};
};
-
}