2023-02-05 13:36:38 +00:00
|
|
|
{ pkgs, ... }: {
|
2022-12-30 12:05:46 +00:00
|
|
|
programs.rofi = {
|
|
|
|
enable = true;
|
|
|
|
plugins = [ pkgs.rofi-calc pkgs.rofi-emoji ];
|
|
|
|
theme = "themes/dracula";
|
|
|
|
extraConfig = {
|
|
|
|
modi = "drun,ssh,filebrowser,keys,window";
|
|
|
|
kb-primary-paste = "Control+V,Shift+Insert";
|
|
|
|
kb-secondary-paste = "Control+v,Insert";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
programs.rofi.pass = {
|
|
|
|
enable = true;
|
|
|
|
extraConfig = ''
|
|
|
|
layout_cmd () {
|
|
|
|
setxkbmap de
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|