nix-config/home/hyprland/rofi/default.nix

29 lines
429 B
Nix
Raw Normal View History

2025-03-24 12:11:44 +01:00
{
pkgs,
...
2025-09-03 10:03:29 +02:00
}:
{
home.packages = with pkgs; [
rofi-power-menu
rofi-calc
];
programs.rofi = {
enable = true;
cycle = false;
package = pkgs.rofi-wayland;
font = "FiraCode Nerd Font Mono 12";
location = "center";
terminal = "${pkgs.kitty}/bin/kitty";
2025-05-03 13:19:50 +02:00
2025-09-03 10:03:29 +02:00
};
2025-03-25 15:01:48 +01:00
2025-09-03 10:03:29 +02:00
home.file.".config/rofi" = {
source = ./configs;
# copy the scripts directory recursively
recursive = true;
};
2025-03-24 12:11:44 +01:00
}