From b9e2e56206eeca31026be0d7465014a5ed31bda9 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Fri, 9 May 2025 03:44:04 +0200 Subject: [PATCH] chore: displaylink is not required at the moment and takes lots of cpu --- modules/core/default.nix | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/modules/core/default.nix b/modules/core/default.nix index 6f160d3..10428ec 100644 --- a/modules/core/default.nix +++ b/modules/core/default.nix @@ -1,21 +1,21 @@ { ... }: { imports = - [(import ./docker.nix)] - ++ [(import ./hardware.nix)] - ++ [(import ./displaylink.nix)] + [ (import ./docker.nix) ] + ++ [ (import ./hardware.nix) ] + # ++ [(import ./displaylink.nix)] # ++ [(import ./printing.nix)] - ++ [(import ./xserver.nix)] - ++ [(import ./network.nix)] - ++ [(import ./pipewire.nix)] - ++ [(import ./program.nix)] - ++ [(import ./sshd.nix)] - ++ [(import ./security.nix)] - ++ [(import ./services.nix)] - ++ [(import ./system.nix)] - ++ [(import ./user.nix)] - ++ [(import ./bluetooth.nix)] - ++ [(import ./yubikey.nix)] - ++ [(import ./steam.nix)] - ++ [(import ./wayland.nix)]; + ++ [ (import ./xserver.nix) ] + ++ [ (import ./network.nix) ] + ++ [ (import ./pipewire.nix) ] + ++ [ (import ./program.nix) ] + ++ [ (import ./sshd.nix) ] + ++ [ (import ./security.nix) ] + ++ [ (import ./services.nix) ] + ++ [ (import ./system.nix) ] + ++ [ (import ./user.nix) ] + ++ [ (import ./bluetooth.nix) ] + ++ [ (import ./yubikey.nix) ] + ++ [ (import ./steam.nix) ] + ++ [ (import ./wayland.nix) ]; }