core/hardware: remove uni-sync

This commit is contained in:
Anthony Rodriguez 2025-01-31 16:44:09 +01:00
parent 6ea4799042
commit 83f8c32991
Signed by: nezia
SSH key fingerprint: SHA256:Ihfpl0rUpqDevYqnzSR34OYfVLbDNkBiUjs3CpX4ykA
2 changed files with 0 additions and 45 deletions

View file

@ -4,7 +4,6 @@
./fwupd.nix
./nvidia.nix
./printing.nix
./uni-sync.nix
./via.nix
];
}

View file

@ -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"];
};
};
}