Files
nix-config/home-manager/features/desktop/dwm/rofi.nix
2024-04-20 14:26:21 +02:00

16 lines
193 B
Nix

{
lib,
config,
pkgs,
...
}: {
programs.rofi = {
enable = true;
plugins = with pkgs; [
rofi-calc
];
location = "center";
theme = "gruvbox-dark-soft";
};
}