refactor(users): drop redundant == true (statix bool_comparison)

This commit is contained in:
2026-07-06 15:36:50 +01:00
parent c06a57f249
commit 2193610494
+2 -2
View File
@@ -29,10 +29,10 @@
// lib.optionalAttrs (spec ? linger) { inherit (spec) linger; } // lib.optionalAttrs (spec ? linger) { inherit (spec) linger; }
) hostUsers; ) hostUsers;
programs.firefox = lib.mkIf (config.features.swayDesktop.enable == true) { programs.firefox = lib.mkIf config.features.swayDesktop.enable {
enable = true; enable = true;
}; };
programs.thunderbird = lib.mkIf (config.features.swayDesktop.enable == true) { programs.thunderbird = lib.mkIf config.features.swayDesktop.enable {
enable = true; enable = true;
}; };
} }