This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/user/configs/rofi/default.nix

12 lines
196 B
Nix
Raw Normal View History

2023-10-08 10:51:15 +01:00
{pkgs, ...}: {
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
2024-03-01 22:46:54 +00:00
terminal = "kitty";
extraConfig = {
2023-07-01 19:47:43 +01:00
modi = "drun,run";
};
2023-05-26 02:42:33 +01:00
theme = ./theme.rasi;
};
}