configuration.nix/home/sway/rofi/default.nix

13 lines
229 B
Nix
Raw Normal View History

2023-03-15 22:11:59 +05:30
{ pkgs, ... }: {
programs.rofi = {
enable = true;
cycle = false;
package = pkgs.rofi-wayland;
font = "FiraCode Nerd Font 16";
extraConfig = {
show-icons = true;
};
theme = ./theme.rasi;
};
}