diff options
author | Karel Kočí <cynerd@email.cz> | 2022-10-24 21:45:38 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-10-24 21:45:38 +0200 |
commit | b95e8b11cfff1397b784781c83a3d736cde4a9ac (patch) | |
tree | 65942175996d34e0def5617bf6b54f8fd3902977 | |
parent | e8610a073d67ab2be05175f386218a7772b0a892 (diff) | |
download | nixturris-b95e8b11cfff1397b784781c83a3d736cde4a9ac.tar.gz nixturris-b95e8b11cfff1397b784781c83a3d736cde4a9ac.tar.bz2 nixturris-b95e8b11cfff1397b784781c83a3d736cde4a9ac.zip |
nixos/turris-omnia-support: omnia should be fixed now
-rw-r--r-- | nixos/modules/turris-omnia-support.nix | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/nixos/modules/turris-omnia-support.nix b/nixos/modules/turris-omnia-support.nix index 9a59212..4b50e6f 100644 --- a/nixos/modules/turris-omnia-support.nix +++ b/nixos/modules/turris-omnia-support.nix @@ -9,13 +9,10 @@ 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" - #]; - # Blacklist leds for now as they cause kernel faults - boot.blacklistedKernelModules = ["leds_turris_omnia"]; + # Force load of Turris Omnia leds + boot.kernelModules = [ + "leds_turris_omnia" + ]; # Explicitly set device tree to ensure we load the correct one. hardware.deviceTree.name = "armada-385-turris-omnia.dtb"; |