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