nixos-config/wrappers/rofi/default.nix
2024-05-09 19:05:51 +02:00

21 lines
360 B
Nix

{
assembleWrapper,
pkgs,
lib,
...
}: {theme ? "dark"}:
assembleWrapper {
basePackage = pkgs.rofi-wayland;
flags = let
rofi-config =
{
dark = ./dark-config.rasi;
light = ./light-config.rasi;
}
.${theme};
in [
"-config"
rofi-config
];
}