Skip to content

Commit

Permalink
remove redundant parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
HeitorAugustoLN authored Nov 30, 2024
1 parent 1867cd1 commit d01ec18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/workspace.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit d01ec18

Please sign in to comment.