From bb613ac8037ff0858df6d13dbf28658aa922eb1f Mon Sep 17 00:00:00 2001 From: lyrathorpe Date: Mon, 6 Jul 2026 15:36:50 +0100 Subject: [PATCH] refactor(users): drop redundant == true (statix bool_comparison) --- modules/users.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/users.nix b/modules/users.nix index ab45bf4..98cb530 100644 --- a/modules/users.nix +++ b/modules/users.nix @@ -29,10 +29,10 @@ // lib.optionalAttrs (spec ? linger) { inherit (spec) linger; } ) hostUsers; - programs.firefox = lib.mkIf (config.features.swayDesktop.enable == true) { + programs.firefox = lib.mkIf config.features.swayDesktop.enable { enable = true; }; - programs.thunderbird = lib.mkIf (config.features.swayDesktop.enable == true) { + programs.thunderbird = lib.mkIf config.features.swayDesktop.enable { enable = true; }; }