Files
nix-config/home/system/rofi.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;
};
}