24 lines
588 B
Nix
24 lines
588 B
Nix
{ pkgs, ... }: {
|
|
|
|
home.packages = with pkgs; [
|
|
rofimoji
|
|
rofi-bluetooth
|
|
rofi-power-menu
|
|
rofi-vpn
|
|
];
|
|
|
|
programs.rofi = {
|
|
enable = true;
|
|
location = "center";
|
|
font = "${pkgs.rice.font.monospace.name} ${
|
|
toString pkgs.rice.font.monospace.size
|
|
}";
|
|
plugins = with pkgs; [ rofi-calc ];
|
|
extraConfig = { modi = "drun,run,ssh,window,calc"; };
|
|
terminal = "kitty";
|
|
theme = "onedark";
|
|
};
|
|
|
|
xdg.configFile."rofi/nord.rasi".source = ../configs/rofi/nord.rasi;
|
|
xdg.configFile."rofi/onedark.rasi".source = ../configs/rofi/onedark.rasi;
|
|
}
|