misc updates for build

This commit is contained in:
Kate 2025-02-27 11:14:49 +01:00
parent d5ce316a88
commit 653eae11b0
4 changed files with 9 additions and 8 deletions

View file

@ -167,6 +167,7 @@
./nixos/configs/music-server ./nixos/configs/music-server
./nixos/configs/fonts-linux.nix ./nixos/configs/fonts-linux.nix
./nixos/overlays/fixup-nheko
./nixos/overlays/fixup-signal ./nixos/overlays/fixup-signal
./nixos/overlays/fixup-imhex.nix ./nixos/overlays/fixup-imhex.nix
./nixos/overlays/customize-gajim ./nixos/overlays/customize-gajim

View file

@ -28,6 +28,8 @@
cursor.package = pkgs.phinger-cursors; cursor.package = pkgs.phinger-cursors;
cursor.name = "phinger-cursors-light"; cursor.name = "phinger-cursors-light";
cursor.size = 24; cursor.size = 24;
targets.qt.platform = "qtct";
}; };
} }
) )

View file

@ -56,7 +56,7 @@ in
# rust # rust
fill-labs.dependi fill-labs.dependi
rust-lang.rust-analyzer #rust-lang.rust-analyzer
njpwerner.autodocstring njpwerner.autodocstring
# python # python

View file

@ -1,5 +1,5 @@
# #
# Forces nheko to use Xorg instead of wayland. # Forces nheko to work properly.
# #
# vim: et:ts=2:sw=2: # vim: et:ts=2:sw=2:
# #
@ -9,12 +9,10 @@ let
nheko = prev'.nheko.overrideAttrs ( nheko = prev'.nheko.overrideAttrs (
final: prev: { final: prev: {
# Patches from pennae ^-^ preFixup = prev.preFixup + ''
patches = prev.patches ++ [ qtWrapperArgs+=(--unset QT_STYLE_OVERRIDE)
./nheko-del.patch '';
./nheko-search.patch
./timeline-read-color.patch
];
} }
); );
}; };