2024-11-18 03:01:26 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
inputs,
|
|
|
|
...
|
2025-01-12 19:12:41 +00:00
|
|
|
}: let
|
2024-11-18 03:01:26 +00:00
|
|
|
cfg = config.marleyos.programs.rofi;
|
|
|
|
hasXorg = config.xsession.enable;
|
2025-01-12 19:12:41 +00:00
|
|
|
in {
|
2025-01-14 05:05:10 +00:00
|
|
|
options.marleyos.programs.rofi.enable = lib.mkEnableOption "rofi";
|
2024-11-18 03:01:26 +00:00
|
|
|
|
2025-01-14 05:05:10 +00:00
|
|
|
config = lib.mkIf (cfg.enable && hasXorg) {
|
2024-11-18 03:01:26 +00:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
rofi
|
|
|
|
];
|
|
|
|
|
2025-01-12 19:12:41 +00:00
|
|
|
marleyos.apps.launcher = {
|
|
|
|
package = pkgs.rofi;
|
|
|
|
command = "--show drun";
|
|
|
|
};
|
|
|
|
|
2024-11-18 03:01:26 +00:00
|
|
|
xdg.configFile."rofi".source = "${inputs.rofi-themes}/files";
|
|
|
|
};
|
|
|
|
}
|