mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 19:46:14 +01:00
16 lines
193 B
Nix
16 lines
193 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.rofi = {
|
|
enable = true;
|
|
plugins = with pkgs; [
|
|
rofi-calc
|
|
];
|
|
location = "center";
|
|
theme = "gruvbox-dark-soft";
|
|
};
|
|
}
|