mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-23 00:34:24 +01:00
43a07cc8d9
Neither nixfmt nor alejandra support the "standard" way to syntax highlight multi-line strings in Nix, so nixpkgs-fmt is the only viable solution.
29 lines
668 B
Nix
29 lines
668 B
Nix
{ lib, ... }: {
|
|
home-manager.sharedModules = [
|
|
{
|
|
programs.rofi = {
|
|
enable = true;
|
|
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;
|
|
};
|
|
}
|
|
];
|
|
}
|