flakes/modules/user/rofi.nix
2024-01-15 23:31:25 +07:00

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;
}