mirror of
https://github.com/sstent/nixos-cluster.git
synced 2025-12-06 06:01:54 +00:00
17 lines
289 B
Nix
17 lines
289 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
inputs,
|
|
...
|
|
}: {
|
|
systemd.services.setleds = {
|
|
script = ''
|
|
echo "Setting Odroid LEDs"
|
|
echo none > /sys/class/leds/blue\:heartbeat/trigger
|
|
cat /sys/class/leds/blue\:heartbeat/trigger
|
|
'';
|
|
wantedBy = ["multi-user.target"];
|
|
};
|
|
}
|