nix/programm_configs/rofi.nix
2024-02-24 00:30:05 +01:00

17 lines
336 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;
};
};
}