core/hardware: remove uni-sync
This commit is contained in:
parent
6ea4799042
commit
83f8c32991
2 changed files with 0 additions and 45 deletions
|
@ -4,7 +4,6 @@
|
||||||
./fwupd.nix
|
./fwupd.nix
|
||||||
./nvidia.nix
|
./nvidia.nix
|
||||||
./printing.nix
|
./printing.nix
|
||||||
./uni-sync.nix
|
|
||||||
./via.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