nicks-nix-config/modules/rofi.nix

21 lines
382 B
Nix
Raw Normal View History

2023-02-18 11:10:57 -08:00
{ pkgs, ... }:
{
home.file.".config/rofi/nicks-rofi-theme.rasi".source = ../rsrcs/nicks-rofi-theme.rasi;
programs.rofi = {
enable = true;
theme = "nicks-rofi-theme";
yoffset = -50;
extraConfig = {
modi = "window,run,ssh";
sidebar-mode = true;
cycle = true;
show-icons = true;
terminal = "wezterm";
lines = 7;
};
};
}