flake/users/guanranwang/home-manager/modules/wm/components/rofi/default.nix
2023-11-28 12:12:13 +08:00

16 lines
357 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 = ./rofi;
recursive = true;
};
}