From 0be79ce62d35bdf156f8727aa89c651150b5481c Mon Sep 17 00:00:00 2001 From: JuliusFreudenberger Date: Mon, 22 Jun 2026 22:11:50 +0200 Subject: [PATCH 1/3] 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/3] 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}))?\"" ] } ] From 4cf57f2b635ee514bd7ea4b9f90980db5fa88e64 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 22 Jun 2026 22:14:01 +0200 Subject: [PATCH 3/3] Update fnsys/dockhand Docker tag to v1.0.35 --- modules/dockhand.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/dockhand.nix b/modules/dockhand.nix index 82c541b..60f99e1 100644 --- a/modules/dockhand.nix +++ b/modules/dockhand.nix @@ -17,7 +17,7 @@ in { config = lib.mkIf cfg.enable { virtualisation.oci-containers.containers = { dockhand = { - image = "fnsys/dockhand:v1.0.32@sha256:cda754fc7ccb4acd0ecc37cc37b9cf0d2b933bf19de89d47957b26ecf109a543"; + image = "fnsys/dockhand:v1.0.35@sha256:1b9473bd11cb60fed23bad8d335acb03f032b369230cd0a3dc3c0a1cbb8cb47c"; volumes = [ "/var/run/docker.sock:/var/run/docker.sock" ];