displaylink: Use upstream

This commit is contained in:
Geoffrey Frogeye 2024-08-25 10:43:05 +02:00
parent c375cb2e11
commit 4d39ac0769
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
2 changed files with 6 additions and 3 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, lib, config, nixos-hardware, displaylinknixpkgs, ... }:
{ pkgs, lib, nixos-hardware, unixpkgs, ... }:
let
displays = {
embedded = {
@ -65,7 +65,10 @@ in
};
nixpkgs.overlays = [
(self: super: {
displaylink = (import displaylinknixpkgs { inherit (super) system; config.allowUnfree = true; }).displaylink;
displaylink = (import unixpkgs {
inherit (super) system;
config.allowUnfree = true;
}).displaylink;
})
];
services = {

View file

@ -4,7 +4,7 @@
inputs = {
# Packages
nixpkgs.url = "nixpkgs/nixos-24.05";
displaylinknixpkgs.url = "github:GeoffreyFrogeye/nixpkgs/displaylink-600";
unixpkgs.url = "nixpkgs/master";
# OS
disko = {
url = "disko";