nix/shared/rofi.nix
2024-10-31 22:47:27 +01:00

11 lines
161 B
Nix

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