flake/users/guanranwang/home-manager/applications/rofi/default.nix

17 lines
357 B
Nix
Raw Normal View History

2023-11-05 12:50:08 +00:00
{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" = {
2023-11-25 09:02:50 +00:00
source = ./rofi;
2023-11-05 12:50:08 +00:00
recursive = true;
};
}