diff --git a/wm/hyprland.nix b/wm/hyprland.nix index b99ab3a..1cff60d 100644 --- a/wm/hyprland.nix +++ b/wm/hyprland.nix @@ -23,6 +23,7 @@ "$terminal" = "kitty"; "$menu" = "rofi -show drun"; "$bluetoothMenu" = "bzmenu --launcher rofi"; + "$files" = "rofi -show filebrowser"; ### BASIC LAYOUT general = { @@ -77,6 +78,7 @@ "$mod, RETURN, exec, $terminal" "$mod, D, exec, $menu" "$mod, B, exec, $bluetoothMenu" + "$mod, G, exec, $files" "$mod, Q, killactive" "$mod, F, fullscreen" "$mod, M, exit" diff --git a/wm/rofi.nix b/wm/rofi.nix index 95c145f..fcb7c38 100644 --- a/wm/rofi.nix +++ b/wm/rofi.nix @@ -1,6 +1,10 @@ { pkgs, ... }: { + home.packages = [ + pkgs.rofi-file-browser + ]; + programs.rofi = { enable = true; theme = "material";