15 lines
440 B
Nix
15 lines
440 B
Nix
{ pkgs, ... }: {
|
|
programs.rofi = {
|
|
enable = true;
|
|
location = "center";
|
|
font = "${pkgs.rice.font.monospace.name} ${
|
|
toString pkgs.rice.font.monospace.size
|
|
}";
|
|
extraConfig = { modi = "drun,run,ssh,window"; };
|
|
terminal = "kitty";
|
|
theme = "onedark";
|
|
};
|
|
|
|
xdg.configFile."rofi/nord.rasi".source = ../configs/rofi/nord.rasi;
|
|
xdg.configFile."rofi/onedark.rasi".source = ../configs/rofi/onedark.rasi;
|
|
}
|