dotfiles.nix/home-manager/sajenim/features/desktop/rofi/default.nix
2024-08-08 09:02:42 +08:00

17 lines
326 B
Nix

{pkgs, ...}: {
programs.rofi = {
enable = true;
font = "Fisa Code 10";
plugins = with pkgs; [
rofi-calc
];
theme = ./gruvbox-material/gruvbox-material-dark-hard.rasi;
};
xdg.configFile.theme = {
source = ./gruvbox-material;
target = "rofi/themes/gruvbox";
recursive = true;
};
}