20 lines
494 B
Nix
20 lines
494 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
config.programs.rofi = {
|
|
enable = true;
|
|
plugins = with pkgs; [ rofi-calc rofi-emoji ];
|
|
terminal = "${pkgs.alacritty}/bin/alacritty";
|
|
theme = ./themes/gruvbox-dark-soft.rasi;
|
|
pass = {
|
|
enable = true;
|
|
stores = [ config.programs.password-store.settings.PASSWORD_STORE_DIR ];
|
|
extraConfig = ''
|
|
default_user=:filename
|
|
'';
|
|
};
|
|
};
|
|
|
|
# let rofi insert emojis directly
|
|
config.home.packages = [ pkgs.xdotool ];
|
|
}
|