From b5d9eadc56c557fd6c36ffb8707b488945530796 Mon Sep 17 00:00:00 2001 From: Thomas Syms Date: Thu, 15 Aug 2024 14:04:54 -0300 Subject: [PATCH] chore: Update hyprland configuration with keybindings for dolphin, firefox, codium, rofi, and kitty --- home/desktops/hyprland/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/home/desktops/hyprland/default.nix b/home/desktops/hyprland/default.nix index 1cf0cd9..0afa079 100644 --- a/home/desktops/hyprland/default.nix +++ b/home/desktops/hyprland/default.nix @@ -24,7 +24,11 @@ ]; bind = [ + # Manage Windows + "$mainMod, B, exec, pypr expose" + # Launch Bindings + "$mainMod, Enter, exec, rofi -show drun" "$mainMod, T, exec, $terminal" "$mainMod, B, exec, $browser" "$mainMod, C, exec, $editor" @@ -83,4 +87,8 @@ enable = true; package = pkgs.kitty; }; + + home.packages = with pkgs; [ + pyprland + ]; }