NixOS/Rofi/rofi.nix
2026-03-30 13:10:42 +07:00

162 lines
4.3 KiB
Nix

# Rofi configuration and scripts
# Works with both Hyprland (Wayland) and dwm (X11)
{
pkgs-stable,
config,
lib,
...
}:
let
scriptsDir = ./Scripts;
# Detect if we're in Wayland or X11 based on session type
# This is evaluated at build time, so we need runtime detection in scripts
isWayland = config.wayland.windowManager.hyprland.enable or false;
# Terminal varies by environment
terminal = if isWayland then "foot" else "st";
in
{
# Wayland-specific packages (only when using Hyprland)
home.packages =
with pkgs-stable;
[
rofi-bluetooth
rofi-network-manager
ddgr
brightnessctl
bc
sqlite
# Custom scripts (environment-aware)
(writeShellScriptBin "rofi-websearch" (builtins.readFile "${scriptsDir}/websearch.sh"))
(writeShellScriptBin "rofi-max30" (builtins.readFile "${scriptsDir}/max30.sh"))
(writeShellScriptBin "rofi-system" (builtins.readFile "${scriptsDir}/system.sh"))
(writeShellScriptBin "rofi-favorites" (builtins.readFile "${scriptsDir}/favorites.sh"))
]
++ (
if isWayland then
[
wl-gammarelay-rs
]
else
[
]
);
# Start wl-gammarelay-rs on Hyprland
wayland.windowManager.hyprland.settings = lib.mkIf isWayland {
exec-once = [ "wl-gammarelay-rs" ];
};
programs.rofi = {
enable = true;
package = pkgs-stable.rofi;
terminal = terminal;
plugins = with pkgs-stable; [
rofi-calc
rofi-emoji
];
modes = [
"system:rofi-system"
"favorites:rofi-favorites"
"drun"
"calc"
"emoji"
"max30:rofi-max30"
];
extraConfig = {
show-icons = true;
display-system = "";
display-favorites = "";
display-drun = "";
display-calc = "";
display-emoji = "";
display-max30 = "";
drun-display-format = "{name}";
scroll-method = 0;
disable-history = false;
sidebar-mode = false;
sort = true;
sorting-method = "fzf";
matching = "fuzzy";
kb-primary-paste = "Control+V,Shift+Insert";
kb-secondary-paste = "Control+v,Insert";
kb-secondary-copy = "Control+c";
kb-clear-line = "Control+w";
kb-move-front = "Control+a";
kb-move-end = "Control+e";
kb-move-word-back = "Alt+b,Control+Left";
kb-move-word-forward = "Alt+f,Control+Right";
kb-move-char-back = "Control+b";
kb-move-char-forward = "Control+f";
kb-remove-word-back = "Control+Alt+h,Control+BackSpace";
kb-remove-word-forward = "Control+Alt+d";
kb-remove-char-forward = "Delete,Control+d";
kb-remove-char-back = "BackSpace,Shift+BackSpace,Control+h";
kb-remove-to-eol = "";
kb-remove-to-sol = "Control+u";
kb-accept-entry = "Return,KP_Enter";
kb-accept-custom = "Control+Return";
kb-accept-custom-alt = "Control+Shift+Return";
kb-accept-alt = "Shift+Return";
kb-delete-entry = "Shift+Delete";
kb-mode-next = "Right";
kb-mode-previous = "Left";
kb-mode-complete = "Control+l";
kb-row-left = "Control+Page_Up";
kb-row-right = "Control+Page_Down";
kb-row-up = "Up";
kb-row-down = "Down";
kb-row-tab = "";
kb-element-next = "Tab";
kb-element-prev = "ISO_Left_Tab";
kb-page-prev = "Page_Up";
kb-page-next = "Page_Down";
kb-row-first = "Home,KP_Home";
kb-row-last = "End,KP_End";
kb-row-select = "Control+space";
kb-screenshot = "Alt+S";
kb-ellipsize = "Alt+period";
kb-toggle-case-sensitivity = "grave,dead_grave";
kb-toggle-sort = "Alt+grave";
kb-cancel = "Escape";
};
theme =
let
mkLiteral = value: {
_type = "literal";
value = value;
};
in
{
window = {
width = mkLiteral "300px";
location = mkLiteral "center";
# border-radius = mkLiteral "12px";
border = mkLiteral "2px solid";
border-color = mkLiteral "@border-color";
};
listview = {
lines = 8;
fixed-height = false;
};
element = {
padding = mkLiteral "8px";
# border-radius = mkLiteral "6px";
};
# "element selected" = {
# border-radius = mkLiteral "6px";
# };
inputbar = {
padding = mkLiteral "8px";
};
};
};
}