mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
19 lines
279 B
Nix
19 lines
279 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
|
|
];
|
|
};
|
|
}
|