From ec2d723a661a3aeb2f8f4d9f1fb64c383aab0184 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Tue, 7 Jan 2025 09:58:22 +0100 Subject: [PATCH] feat: adds displaylink driver --- modules/core/displaylink.nix | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 modules/core/displaylink.nix diff --git a/modules/core/displaylink.nix b/modules/core/displaylink.nix new file mode 100644 index 0000000..f7e7608 --- /dev/null +++ b/modules/core/displaylink.nix @@ -0,0 +1,4 @@ +{ ... }: { + services.xserver.videoDrivers = [ "displaylink" "modesetting" ]; + systemd.services.dlm.wantedBy = [ "multi-user.target" ]; +}