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

This commit is contained in:
2026-08-26 20:41:05 +01:00
parent 47362090c3
commit bb613ac803
+2 -2
View File
@@ -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;
};
}