From 0be79ce62d35bdf156f8727aa89c651150b5481c Mon Sep 17 00:00:00 2001 From: JuliusFreudenberger Date: Mon, 22 Jun 2026 22:11:50 +0200 Subject: [PATCH 1/2] Add displaylink module --- hosts/julius-framework/default.nix | 1 + modules/displaylink.nix | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 modules/displaylink.nix diff --git a/hosts/julius-framework/default.nix b/hosts/julius-framework/default.nix index b3c7505..b9f3fc8 100644 --- a/hosts/julius-framework/default.nix +++ b/hosts/julius-framework/default.nix @@ -37,6 +37,7 @@ ../../modules/optical-media.nix ../../modules/flatpak.nix ../../modules/gaming.nix + ../../modules/displaylink.nix # Include the results of the hardware scan. ./hardware-configuration.nix diff --git a/modules/displaylink.nix b/modules/displaylink.nix new file mode 100644 index 0000000..18f2b0c --- /dev/null +++ b/modules/displaylink.nix @@ -0,0 +1,13 @@ +{ + pkgs, + lib, + ... +}: { + + environment.systemPackages = with pkgs; [ + displaylink + ]; + + services.xserver.videoDrivers = [ "displaylink" "modesetting" ]; + +} From 47fc44c46e4002629d2ecde814f8be2374341301 Mon Sep 17 00:00:00 2001 From: JuliusFreudenberger Date: Mon, 22 Jun 2026 22:12:01 +0200 Subject: [PATCH 2/2] Fix regex currentDigest instead of digest, similar to currentValue --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index e25b3b1..f8ec5c5 100644 --- a/renovate.json +++ b/renovate.json @@ -12,7 +12,7 @@ ".+\\.nix$" ], "matchStrings": [ - "\\s+image\\s+=\\s+\"(?.*?):(?.*?)(@(?sha256:[a-z0-9]{64}))?\"" + "\\s+image\\s+=\\s+\"(?.*?):(?.*?)(@(?sha256:[a-z0-9]{64}))?\"" ] } ]