From c39c540a3ffd8be18ca433366a24d3de9b74a687 Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Fri, 31 Jan 2025 16:44:09 +0100 Subject: [PATCH] core/hardware: remove uni-sync --- modules/core/hardware/default.nix | 1 - modules/core/hardware/uni-sync.nix | 44 ------------------------------ 2 files changed, 45 deletions(-) delete mode 100644 modules/core/hardware/uni-sync.nix diff --git a/modules/core/hardware/default.nix b/modules/core/hardware/default.nix index 502a8e2..adfbcf3 100644 --- a/modules/core/hardware/default.nix +++ b/modules/core/hardware/default.nix @@ -4,7 +4,6 @@ ./fwupd.nix ./nvidia.nix ./printing.nix - ./uni-sync.nix ./via.nix ]; } diff --git a/modules/core/hardware/uni-sync.nix b/modules/core/hardware/uni-sync.nix deleted file mode 100644 index 15e061a..0000000 --- a/modules/core/hardware/uni-sync.nix +++ /dev/null @@ -1,44 +0,0 @@ -{ - lib, - pkgs, - config, - ... -}: { - config = lib.mkIf config.local.profiles.gaming.enable { - hardware.uni-sync = { - enable = true; - devices = [ - { - device_id = "VID:3314/PID:41218/SN:6243168001"; - sync_rgb = true; - channels = [ - { - mode = "Manual"; - speed = 60; - } - { - mode = "Manual"; - speed = 60; - } - { - mode = "Manual"; - speed = 60; - } - { - mode = "Manual"; - speed = 60; - } - ]; - } - ]; - }; - - systemd.services.uni-sync = { - enable = true; - serviceConfig = { - ExecStart = "${pkgs.uni-sync}/bin/uni-sync"; - }; - wantedBy = ["multi-user.target"]; - }; - }; -}