mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
15 lines
273 B
Nix
15 lines
273 B
Nix
{ pkgs, config, ... }: {
|
|
home.packages = [
|
|
config.programs.rofi.finalPackage
|
|
];
|
|
programs.rofi = {
|
|
enable = true;
|
|
font = "Monaspace Krypton";
|
|
terminal = "wezterm";
|
|
plugins = with pkgs; [
|
|
rofi-games
|
|
rofimoji
|
|
rofi-rbw
|
|
];
|
|
};
|
|
}
|