This commit is contained in:
Lucy Hochkamp 2025-08-26 00:58:27 +02:00
parent 414e830efa
commit d3a93fd115
No known key found for this signature in database
35 changed files with 1832 additions and 228 deletions

31
overlays/default.nix Normal file
View file

@ -0,0 +1,31 @@
inputs: self: super: {
xwayland-satellite = inputs.xwayland-satellite.packages.${super.system}.default;
mtxclient = super.mtxclient.overrideAttrs (old: {
version = old.version + "-git";
src = inputs.mtxclient;
});
nheko = super.nheko.overrideAttrs (old: {
version = old.version + "-patched";
src = inputs.nheko;
patches = (old.patches or [ ]) ++ [
(self.fetchpatch2 {
url = "https://github.com/Nheko-Reborn/nheko/pull/1838/commits/c9f1a449d825d5879735f95ebfb0c7acec101226.patch";
hash = "sha256-RhyP8HrGtT6gYMc9mI4I8snrHCN8f0YYzFbAoMKweyc=";
})
];
LANG = "C.UTF-8";
buildInputs = old.buildInputs ++ [
self.libsysprof-capture
self.libunwind
# nheko fails to start on mobile without this
# also, the above patch + kirigami fixes scroll speed
self.kdePackages.kirigami
];
});
fido2-hid-bridge = super.callPackage ../packages/fido2-hid-bridge.nix {};
python-uhid = super.callPackage ../packages/uhid.nix {};
caddy-desec = super.callPackage ../packages/caddy-desec.nix {};
}