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
212 B
Nix
Raw Normal View History

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