dotfiles/nixos/i3/rofi.nix
2020-08-16 18:22:58 +01:00

12 lines
182 B
Nix

{ config, pkgs, ... }:
{
programs.rofi = {
enable = true;
font = "Fira Code Nerd Font 16";
separator = "solid";
scrollbar = false;
theme = "solarized";
};
}