diff --git a/curacao/hardware.nix b/curacao/hardware.nix index 6147188..3d01138 100644 --- a/curacao/hardware.nix +++ b/curacao/hardware.nix @@ -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 = { diff --git a/flake.nix b/flake.nix index c91c36b..5a147b9 100644 --- a/flake.nix +++ b/flake.nix @@ -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";