mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 04:39:32 -08:00
20 lines
382 B
Nix
20 lines
382 B
Nix
{ 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;
|
|
};
|
|
};
|
|
}
|