1
0
forked from extern/nix-config
donovanglover-nix-config/desktop/rofi/default.nix
Donovan Glover 24f61278c6
rofi: Add custom rofi-wayland package
This is a modified version of the package in nixpkgs that uses the
latest commit.
2023-05-22 22:57:43 -04:00

30 lines
762 B
Nix

{ pkgs, lib, ... }:
{
home-manager.sharedModules = [{
programs.rofi = {
enable = true;
package = (pkgs.callPackage ./package/wrapper.nix {
rofi-unwrapped = (pkgs.callPackage ./package/wayland.nix { });
});
cycle = false;
extraConfig = {
modi = "drun,filebrowser";
font = "Noto Sans CJK JP 12";
show-icons = true;
bw = 0;
display-drun = "";
display-window = "";
display-combi = "";
icon-theme = "Fluent-dark";
terminal = "kitty";
drun-match-fields = "name";
drun-display-format = "{name}";
me-select-entry = "";
me-accept-entry = "MousePrimary";
};
theme = lib.mkForce ./launchpad.rasi;
};
}];
}