flakes/modules/user/rofi-wayland.nix

9 lines
191 B
Nix
Raw Normal View History

2024-01-17 15:33:46 +07:00
{ config, pkgs, ... }: {
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
theme = "theme";
};
xdg.configFile."rofi/theme.rasi".source = ../../res/theme.rasi;
}