nix/programm_configs/rofi.nix
2024-05-02 15:42:56 +02:00

18 lines
356 B
Nix

{ pkgs, ... }:
{
programs.rofi = {
enable = true;
font = "hack 10";
theme = "slate";
terminal = "alacritty";
location = "top-left";
extraConfig = {
modi = "window,drun,ssh,combi";
combi-modi = "window,drun,ssh";
icon-theme = "Papirus";
dpi = 100;
show-icons = true;
yoffset = 50;
};
};
}