diff --git a/users/configs/desktop/hyprland/default.nix b/users/configs/desktop/hyprland/default.nix index 7d083d0..8b37fe4 100644 --- a/users/configs/desktop/hyprland/default.nix +++ b/users/configs/desktop/hyprland/default.nix @@ -35,7 +35,7 @@ in { xwayland = { enable = true; }; - enableNvidiaPatches = (hostname == "elderbug"); + enableNvidiaPatches = hostname == "elderbug"; extraConfig = (builtins.readFile ./${hostname}.conf) + '' diff --git a/users/configs/system/kitty/default.nix b/users/configs/system/kitty/default.nix index 9290f5c..acb3947 100644 --- a/users/configs/system/kitty/default.nix +++ b/users/configs/system/kitty/default.nix @@ -31,31 +31,30 @@ in { name = "Iosevka Nerd Font"; }; package = package; - keybindings = { - # Windows/Panes - "kitty_mod+enter" = "new_window_with_cwd"; + keybindings = { + # Windows/Panes + "kitty_mod+enter" = "new_window_with_cwd"; - "kitty_mod+h" = "neighboring_window left"; - "kitty_mod+j" = "neighboring_window down"; - "kitty_mod+k" = "neighboring_window up"; - "kitty_mod+l" = "neighboring_window right"; + "kitty_mod+h" = "neighboring_window left"; + "kitty_mod+j" = "neighboring_window down"; + "kitty_mod+k" = "neighboring_window up"; + "kitty_mod+l" = "neighboring_window right"; - "kitty_mod+r" = "start_resizing_window"; + "kitty_mod+r" = "start_resizing_window"; + # Tabs + "kitty_mod+t" = "new_tab"; + "kitty_mod+w" = "close_tab"; - # Tabs - "kitty_mod+t" = "new_tab"; - "kitty_mod+w" = "close_tab"; - - # Other - }; + # Other + }; settings = { "include" = "catppuccin.conf"; "scrollback_lines" = 50000; "shell_integration" = "enabled no-cursor"; - "allow_remote_control" = "yes"; + "allow_remote_control" = "yes"; "cursor_shape" = "underline"; "cursor_blink_interval" = 0; @@ -70,8 +69,8 @@ in { "tab_bar_edge" = "top"; "tab_bar_style" = "powerline"; "tab_powerline_style" = "slanted"; - - "clear_all_shortcuts" = "yes"; + + "clear_all_shortcuts" = "yes"; }; }; }