curacao: Attempt at fixing hang issue

This commit is contained in:
Geoffrey Frogeye 2025-05-26 23:40:35 +02:00
parent a9e515ab90
commit 4fd1028e1f

View file

@ -41,6 +41,7 @@
self,
nixpkgs,
unixpkgs,
onixpkgs,
disko,
nix-on-droid,
flake-utils,
@ -62,9 +63,14 @@
self: super:
let
upkgs = import unixpkgs { inherit (super) system; };
opkgs = import onixpkgs {
inherit (super) system;
config.allowUnfree = true;
};
in
{
hello = upkgs.hello; # Placeholder
displaylink = opkgs.displaylink; # curacao sometimes hang since 25.05, looks like it's X/DL related
}
)
];