-
-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't install it in nixos unless changing the metadata to qt5 #30
Comments
Might be worth looking at NixOS/nixpkgs#296682, since this PR works for me. |
Hello @iuribrindeiro, check the package you use for sddm. When using plasma6, it changes the version of sddm. services.displayManager.sddm = {
enable = true;
wayland.enable = true;
package = pkgs.kdePackages.sddm;
theme = "catppuccin-mocha";
extraPackages = with pkgs.kdePackages; [
breeze-icons
kirigami
plasma5support
qtsvg
qtvirtualkeyboard
];
}; |
Since the upstream package has been merged, I assume it has been fixed. Please do let me know if it works. |
This doesn't work for me either. In fact, this only works for NixOS users that use Qt (which I don't). I had to remove this line to get the theme to work. This tells me that we should remove this line from here and manage Qt support within the install phase of the catppuccin-sddm package instead (it should be opt in, I believe). |
Just to reiterate my point from catppuccin/nix#168 (comment), such that everyone here can see it.
|
The theme doesn't seem to work if the
metadata.desktop
holds theQtVersion=6
, as added in this PR.After manually changing it to
QtVersion=5
it just works.I'm not really sure why is this, but I wanted to leave this here in case someone else has the same issue.
My solution:
The text was updated successfully, but these errors were encountered: