8 lines
199 B
Nix
8 lines
199 B
Nix
{ config, inputs, pkgs, ... }: {
|
|
programs.rofi = {
|
|
enable = true;
|
|
package = pkgs.rofi-wayland;
|
|
theme = "theme";
|
|
};
|
|
xdg.configFile."rofi/theme.rasi".source = ../../res/theme.rasi;
|
|
}
|