nixfleet/users/profiles/cura/default.nix

10 lines
230 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [ ] ++
(if !stdenv.hostPlatform.isAarch64 then [
cura # cura is currently broken on aarch64
] else [ ]);
home.sessionVariables = {
QT_QPA_PLATFORM = "xcb";
};
}