Compare commits

..

2 commits

Author SHA1 Message Date
47fc44c46e Fix regex
currentDigest instead of digest, similar to currentValue
2026-06-22 22:12:01 +02:00
0be79ce62d Add displaylink module 2026-06-22 22:11:50 +02:00
3 changed files with 15 additions and 1 deletions

View file

@ -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

13
modules/displaylink.nix Normal file
View file

@ -0,0 +1,13 @@
{
pkgs,
lib,
...
}: {
environment.systemPackages = with pkgs; [
displaylink
];
services.xserver.videoDrivers = [ "displaylink" "modesetting" ];
}

View file

@ -12,7 +12,7 @@
".+\\.nix$"
],
"matchStrings": [
"\\s+image\\s+=\\s+\"(?<depName>.*?):(?<currentValue>.*?)(@(?<digest>sha256:[a-z0-9]{64}))?\""
"\\s+image\\s+=\\s+\"(?<depName>.*?):(?<currentValue>.*?)(@(?<currentDigest>sha256:[a-z0-9]{64}))?\""
]
}
]