flakes/modules/user/rofi.nix

9 lines
199 B
Nix
Raw Normal View History

2024-01-15 23:31:25 +07:00
{ config, inputs, pkgs, ... }: {
programs.rofi = {
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-11-18 22:56:27 +07:00
xdg.configFile."rofi/theme.rasi".source = ../../res/theme.rasi;
}