diff --git a/home/rofi/default.nix b/home/rofi/default.nix index 8ba9b0a..d9c7382 100644 --- a/home/rofi/default.nix +++ b/home/rofi/default.nix @@ -3,10 +3,15 @@ config, ... }: { - # 基于 https://github.com/endeavouros-team/endeavouros-i3wm-setup - home.file.".config/rofi" = { - source = ./configs; - # copy the scripts directory recursively - recursive = true; - }; + programs.rofi = { + enable = true; + cycle = false; + package = pkgs.rofi-wayland; + }; + + home.file.".config/rofi" = { + source = ./configs; + # copy the scripts directory recursively + recursive = true; + }; }