Fix naming

This commit is contained in:
SebastianStork 2025-03-18 23:36:49 +01:00
parent 765db19140
commit 0175a0af51
17 changed files with 11 additions and 11 deletions

View file

@ -1,27 +0,0 @@
{
config,
pkgs,
lib,
...
}:
{
options.myConfig.deUtils.rofi.enable = lib.mkEnableOption "";
config = lib.mkIf config.myConfig.deUtils.rofi.enable {
home.packages = [ pkgs.rofi-wayland ];
xdg.configFile."rofi/config.rasi".source =
let
theming =
{
dark = ./dark-theme.rasi;
light = ./light-theme.rasi;
}
.${config.myConfig.theme};
in
pkgs.concatText "rofi-config" [
./config.rasi
theming
];
};
}