11 lines
161 B
Nix
11 lines
161 B
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
programs.rofi = {
|
|
enable = true;
|
|
plugins = with pkgs; [
|
|
rofi-calc
|
|
rofi-pulse-select
|
|
];
|
|
font = "FiraCode NerdFont 17";
|
|
};
|
|
}
|