Wrap rofi

This commit is contained in:
SebastianStork 2024-05-08 23:40:41 +02:00
parent d51b29358f
commit 694a21affa
8 changed files with 346 additions and 46 deletions

View file

@ -1,20 +0,0 @@
{
config,
pkgs,
lib,
...
}: let
cfg = config.myConfig.de.rofi;
in {
options.myConfig.de.rofi = {
enable = lib.mkEnableOption "";
};
config = lib.mkIf cfg.enable {
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
theme = ./theme.rasi;
};
};
}