feat(rofi): initial rofi configuration

This commit is contained in:
ooks-io 2024-03-04 18:47:52 +13:00
parent 2d83b0f10d
commit 81e37c40c0
4 changed files with 25 additions and 1 deletions

View file

@ -0,0 +1,16 @@
{ lib, config, pkgs, ... }:
let
cfg = config.homeModules.desktop.wayland.launcher.rofi;
in
{
config = lib.mkIf cfg.enable {
programs.rofi = {
enable = true;
font = "${config.fontProfiles.monospace.family}";
package = pkgs.rofi-wayland;
};
};
}