2024-09-09 00:22:14 +00:00
|
|
|
{
|
2024-09-13 01:50:53 +00:00
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib; let
|
|
|
|
cfg = config.custom.programs.rofi-rbw;
|
|
|
|
in {
|
|
|
|
options.custom.programs.rofi-rbw.enable = mkOption {default = false;};
|
2024-09-09 00:22:14 +00:00
|
|
|
|
|
|
|
config.home-manager.users.${config.custom.username} = mkIf cfg.enable {
|
|
|
|
# https://github.com/fdw/rofi-rbw
|
|
|
|
#!! Options not available, files written directly
|
|
|
|
# https://github.com/fdw/rofi-rbw?tab=readme-ov-file#configuration
|
|
|
|
# TODO: Enable input emulation when merged (uinput.enable?)
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/303745
|
|
|
|
home.file.".config/rofi-rbw.rc".text = ''
|
|
|
|
action=copy
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|