flake/users/guanranwang/home-manager/modules/wm/components/rofi.nix
2023-11-15 20:55:27 +08:00

16 lines
380 B
Nix

{pkgs, ...}: {
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
font = "monospace";
terminal = "${pkgs.alacritty}/bin/alacritty";
};
home.packages = with pkgs; [rofi-power-menu];
# Yes, because I have no idea how to use programs.rofi.theme
xdg.configFile."rofi" = {
source = ../../../dotfiles/config/rofi;
recursive = true;
};
}