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