diff --git a/flake.nix b/flake.nix index c4c3acf..7f1edfc 100644 --- a/flake.nix +++ b/flake.nix @@ -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 } ) ];