nix-config/configs/home-manager/rofi.nix

14 lines
163 B
Nix
Raw Permalink Normal View History

2024-04-04 18:44:59 -05:00
{
config,
pkgs,
lib,
...
}: {
programs.rofi = {
enable = true;
location = "top";
terminal = "kitty";
theme = "gruvbox-dark-soft";
};
}