From d01ec18a5c69ef04ba869b1f6de37bd8af523d62 Mon Sep 17 00:00:00 2001 From: Heitor Augusto Date: Sat, 30 Nov 2024 19:12:00 -0300 Subject: [PATCH] remove redundant parentheses --- modules/workspace.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/workspace.nix b/modules/workspace.nix index 61ea5042..1c29bc66 100644 --- a/modules/workspace.nix +++ b/modules/workspace.nix @@ -486,7 +486,7 @@ in ${ lib.optionalString (cfg.workspace.wallpaperBackground != null) ''desktop.writeConfig("${ - if (cfg.workspace.wallpaperBackground ? blur && cfg.workspace.wallpaperBackground.blur != null) then + if cfg.workspace.wallpaperBackground ? blur && cfg.workspace.wallpaperBackground.blur != null then "Blur" else "Color" @@ -545,7 +545,7 @@ in ${ lib.optionalString (cfg.workspace.wallpaperBackground != null) ''desktop.writeConfig("${ - if (cfg.workspace.wallpaperBackground ? blur && cfg.workspace.wallpaperBackground.blur != null) then + if cfg.workspace.wallpaperBackground ? blur && cfg.workspace.wallpaperBackground.blur != null then "Blur" else "Color"