mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 10:56:11 +01:00
13 lines
183 B
Nix
13 lines
183 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.rofi = {
|
|
enable = true;
|
|
package = pkgs.rofi-wayland;
|
|
location = "center";
|
|
theme = lib.mkForce ../configs/rose-pine.rasi;
|
|
};
|
|
}
|