core/hardware: remove uni-sync
This commit is contained in:
parent
0007b9be66
commit
c39c540a3f
2 changed files with 0 additions and 45 deletions
|
@ -4,7 +4,6 @@
|
|||
./fwupd.nix
|
||||
./nvidia.nix
|
||||
./printing.nix
|
||||
./uni-sync.nix
|
||||
./via.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -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"];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue