linuxware/shared/home-manager/dotfiles/rofi/default.nix
Alexandre Cavalheiro S. Tiago da Silva a4267df233
chore: flake update & necessary changes
- Updated Hyprland to master (0.51 came out)
- Re-enabled zenergy kernel module
- Move rofi-wayland to rofi as the packages are merged
2025-09-14 00:06:34 -03:00

28 lines
610 B
Nix

{ pkgs, ... }:
{
programs.rofi = {
enable = true;
package = pkgs.rofi;
font = "IBM Plex Sans";
extraConfig = {
disable-history = false;
display-Network = " 󰤨 Network";
display-drun = " Apps ";
display-run = " Run ";
display-window = " Window";
drun-display-format = "{icon} {name}";
hide-scrollbar = true;
icon-theme = "Papirus-Dark";
location = 0;
modi = "run,drun,window";
show-icons = true;
sidebar-mode = true;
terminal = "alacritty";
};
theme = ./catppuccin-frappe.rasi;
};
}