2024-03-05 22:57:41 +01:00
|
|
|
{
|
|
|
|
home-manager,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: {
|
2023-11-07 00:34:26 +01:00
|
|
|
# A window switcher, application launcher and dmenu replacement. Used to open
|
|
|
|
# programs, view the clipboard history, and select emojis.
|
|
|
|
# https://github.com/davatorium/rofi
|
|
|
|
# https://github.com/lbonn/rofi (wayland fork)
|
|
|
|
# https://wiki.archlinux.org/title/rofi
|
|
|
|
|
|
|
|
home-manager.users.caspervk = {
|
|
|
|
programs.rofi = {
|
|
|
|
enable = true;
|
|
|
|
package = pkgs.rofi-wayland;
|
|
|
|
theme = "android_notification";
|
|
|
|
extraConfig = {
|
2024-06-11 17:55:28 +02:00
|
|
|
modes = "drun";
|
2023-11-07 00:34:26 +01:00
|
|
|
show-icons = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2024-06-11 17:55:28 +02:00
|
|
|
|
|
|
|
# rofimoji is keybound in sway.nix
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
rofimoji
|
|
|
|
];
|
2023-11-07 00:34:26 +01:00
|
|
|
}
|