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