Files
system-config/home-manager/features/rofi/rofi.nix

19 lines
427 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
rofi
];
home.file.".config/rofi" = {
source = ./config;
recursive = true;
};
# TODO: Merge into lua config
# wayland.windowManager.hyprland.settings.windowrule = [
# # Forces the Rofi window to hold focus so that it gets input even if
# # something else opens or the mouse is outside the window.
# "stay_focused on, match:class Rofi"
# ];
}