Skip to content

Commit

Permalink
fix for 24.05
Browse files Browse the repository at this point in the history
Co-authored-by: seth <getchoo@tuta.io>
  • Loading branch information
olifloof and getchoo authored Jun 26, 2024
1 parent 244527b commit c2ac129
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/home-manager/kvantum.nix
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ in
message = ''`qt.style.name` must be `"kvantum"` to use `qt.style.catppuccin`'';
}
{
assertion = lib.elem config.qt.platformTheme.name [ "kvantum" ];
assertion = lib.elem (config.qt.platformTheme.name or config.qt.platformTheme or null) [ "kvantum" ];
message = ''`qt.platformTheme.name` must be set to `"kvantum"` to use `qt.style.catppuccin`'';
}
];
Expand Down

0 comments on commit c2ac129

Please sign in to comment.