From 331bdcde2ed87427628359044d1d4d60cf604b09 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 22 Jun 2026 21:50:22 +0200 Subject: [PATCH 1/4] Update ghcr.io/pocket-id/pocket-id Docker tag to v2.9.0 --- modules/pocket-id.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/pocket-id.nix b/modules/pocket-id.nix index b183d4b..375d2b8 100644 --- a/modules/pocket-id.nix +++ b/modules/pocket-id.nix @@ -17,7 +17,7 @@ in { config = lib.mkIf cfg.enable { virtualisation.oci-containers.containers = { pocket-id = { - image = "ghcr.io/pocket-id/pocket-id:v2.8.0@sha256:a073640418b2cfc8587c488a7270580b3ab95cae2c543f5d64bbbe1fd7ccbae8"; + image = "ghcr.io/pocket-id/pocket-id:v2.9.0@sha256:a073640418b2cfc8587c488a7270580b3ab95cae2c543f5d64bbbe1fd7ccbae8"; autoStart = true; networks = [ "traefik" From 0be79ce62d35bdf156f8727aa89c651150b5481c Mon Sep 17 00:00:00 2001 From: JuliusFreudenberger Date: Mon, 22 Jun 2026 22:11:50 +0200 Subject: [PATCH 2/4] 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 3/4] 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 6e3ae5479b399205c857ffba5d955370a2abb10a Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 22 Jun 2026 22:14:04 +0200 Subject: [PATCH 4/4] Update ghcr.io/pocket-id/pocket-id Docker tag to v2.9.0 --- modules/pocket-id.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/pocket-id.nix b/modules/pocket-id.nix index b183d4b..05c7149 100644 --- a/modules/pocket-id.nix +++ b/modules/pocket-id.nix @@ -17,7 +17,7 @@ in { config = lib.mkIf cfg.enable { virtualisation.oci-containers.containers = { pocket-id = { - image = "ghcr.io/pocket-id/pocket-id:v2.8.0@sha256:a073640418b2cfc8587c488a7270580b3ab95cae2c543f5d64bbbe1fd7ccbae8"; + image = "ghcr.io/pocket-id/pocket-id:v2.9.0@sha256:a2a38a96699d7483d65b5849b015d954f294938306a03a9c0699bc5b79554e86"; autoStart = true; networks = [ "traefik"