mirror of
https://github.com/sstent/nixos-cluster.git
synced 2026-01-25 22:52:57 +00:00
13 lines
268 B
Nix
13 lines
268 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" ];
|
|
};
|
|
|
|
} |