nix/home/rofi/default.nix

19 lines
403 B
Nix
Raw Normal View History

2024-07-08 14:52:27 +02:00
{ pkgs, lib, ... }:
2024-06-05 20:52:52 +02:00
{
2024-07-20 14:33:01 +02:00
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
theme = lib.mkForce "~/nix/home/rofi/gruvbox-material.rasi";
extraConfig = {
2024-08-04 00:37:19 +02:00
display-ssh = "";
display-run = "";
display-drun = "";
display-window = "";
display-combi = "";
show-icons = true;
terminal = "alacritty";
2024-07-20 14:33:01 +02:00
};
};
2024-06-05 20:52:52 +02:00
}