From 80b67d9d9eeb82ee90cd39b65341c74b10e8ccfe Mon Sep 17 00:00:00 2001 From: punkfairie Date: Mon, 4 Nov 2024 20:54:51 -0800 Subject: [PATCH] fix(lib): Fix parens --- modules/lib/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,