rofi themed

This commit is contained in:
2024-04-20 14:26:21 +02:00
parent 8de21a99f0
commit 835925812f
4 changed files with 19 additions and 3 deletions

View File

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