18 lines
289 B
Nix
18 lines
289 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
programs.rofi = {
|
|
enable = true;
|
|
cycle = false;
|
|
package = pkgs.rofi-wayland;
|
|
};
|
|
|
|
home.file.".config/rofi" = {
|
|
source = ./configs;
|
|
# copy the scripts directory recursively
|
|
recursive = true;
|
|
};
|
|
}
|