We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05cb325 commit f837078Copy full SHA for f837078
hosts/nixos/gaming/configuration.nix
@@ -430,6 +430,16 @@ in {
430
wantedBy = ["multi-user.target"];
431
};
432
433
+ systemd.services.kraken = {
434
+ enable = true;
435
+ description = "liquidctl (kraken aio control)";
436
+ script = ''
437
+ ${pkgs.liquidctl}/bin/liquidctl initialize all
438
+ ${pkgs.liquidctl}/bin/liquidctl --bus hid --address /dev/hidraw1 set ring color fading FF0000 FF0000 # set color to red
439
+ '';
440
+ wantedBy = ["multi-user.target"];
441
+ };
442
+
443
networking = {
444
hostName = hostname; # Define your hostname.
445
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
0 commit comments