2025-01-09 16:08:30 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
cfg = config.marleyos.programs.wofi;
|
|
|
|
in {
|
2025-01-14 05:05:10 +00:00
|
|
|
options.marleyos.programs.wofi.enable = lib.mkEnableOption "wofi";
|
2025-01-09 16:08:30 +00:00
|
|
|
|
2025-01-14 05:05:10 +00:00
|
|
|
config = lib.mkIf cfg.enable {
|
2025-01-12 19:12:41 +00:00
|
|
|
marleyos.apps.launcher = {
|
2025-01-12 21:34:02 +00:00
|
|
|
inherit (config.programs.wofi) package;
|
2025-01-12 19:12:41 +00:00
|
|
|
command = "--show drun";
|
|
|
|
};
|
|
|
|
|
2025-01-09 16:08:30 +00:00
|
|
|
programs.wofi = {
|
|
|
|
enable = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|