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

18 lines
289 B
Nix
Raw Normal View History

2025-03-24 12:11:44 +01:00
{
pkgs,
config,
...
}: {
2025-03-25 15:01:48 +01:00
programs.rofi = {
enable = true;
cycle = false;
package = pkgs.rofi-wayland;
};
home.file.".config/rofi" = {
source = ./configs;
# copy the scripts directory recursively
recursive = true;
};
2025-03-24 12:11:44 +01:00
}