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

14 lines
163 B
Nix

{
config,
pkgs,
lib,
...
}: {
programs.rofi = {
enable = true;
location = "top";
terminal = "kitty";
theme = "gruvbox-dark-soft";
};
}