18 lines
377 B
Nix
18 lines
377 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
rofi
|
|
];
|
|
|
|
home.file.".config/rofi" = {
|
|
source = ./config;
|
|
recursive = true;
|
|
};
|
|
|
|
wayland.windowManager.hyprland.settings.windowrulev2 = [
|
|
# Forces the Rofi window to hold focus so that it gets input even if
|
|
# something else opens or the mouse is outside the window.
|
|
"stayfocused, class:Rofi"
|
|
];
|
|
}
|