2024-01-15 23:31:25 +07:00
|
|
|
{ config, inputs, pkgs, ... }: {
|
2021-05-20 14:02:49 +07:00
|
|
|
programs.rofi = {
|
2021-07-11 11:48:02 +07:00
|
|
|
enable = true;
|
2024-01-15 23:31:25 +07:00
|
|
|
package = pkgs.rofi-wayland;
|
2021-11-18 22:56:27 +07:00
|
|
|
theme = "theme";
|
2021-05-20 14:02:49 +07:00
|
|
|
};
|
2021-11-18 22:56:27 +07:00
|
|
|
xdg.configFile."rofi/theme.rasi".source = ../../res/theme.rasi;
|
2021-05-20 14:02:49 +07:00
|
|
|
}
|