diff options
Diffstat (limited to 'nixos/modules')
-rw-r--r-- | nixos/modules/turris-omnia-support.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/nixos/modules/turris-omnia-support.nix b/nixos/modules/turris-omnia-support.nix index 2479f34..8fb8344 100644 --- a/nixos/modules/turris-omnia-support.nix +++ b/nixos/modules/turris-omnia-support.nix @@ -9,6 +9,11 @@ with lib; boot.kernelParams = [ "earlyprintk" "console=ttyS0,115200" ]; + # Force load of Turris Omnia leds (not loadded automatically for some + # reason). + boot.kernelModules = [ + "leds_turris_omnia" + ]; # The additional administration packages environment.systemPackages = with pkgs; [ |