diff --git a/modules/lib/default.nix b/modules/lib/default.nix index 54e490e..2d69174 100644 --- a/modules/lib/default.nix +++ b/modules/lib/default.nix @@ -53,7 +53,7 @@ in # string -> string # convert flavor to full theme name in kebab case # a convenience to deal with the main flavor naming - getKebabTheme = flavor: (if flavor == "main" then "rose-pine" else "rose-pine-${flavor}"); + getKebabTheme = flavor: if (flavor == "main") then "rose-pine" else "rose-pine-${flavor}"; # string -> string # this capitalizes the first letter in a string,