diff options
author | Karel Kočí <cynerd@email.cz> | 2022-04-20 12:11:12 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-04-20 12:11:12 +0200 |
commit | 22b1fcfeb53e0f712315c8008c8be9500832f6f7 (patch) | |
tree | cb22853d6106ba916a88aa948263a570a374d68b /nixos | |
parent | 94f863d84acb5340c3c999f1fa06678f7a5df9f5 (diff) | |
download | nixturris-22b1fcfeb53e0f712315c8008c8be9500832f6f7.tar.gz nixturris-22b1fcfeb53e0f712315c8008c8be9500832f6f7.tar.bz2 nixturris-22b1fcfeb53e0f712315c8008c8be9500832f6f7.zip |
flake: allow access to the tarball nixos configuration
This way it is possible to access the nixos config and packages for
boards with ease.
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/modules/turris-defaults.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/turris-defaults.nix b/nixos/modules/turris-defaults.nix index 2f61827..fe9c4be 100644 --- a/nixos/modules/turris-defaults.nix +++ b/nixos/modules/turris-defaults.nix @@ -38,7 +38,7 @@ in { ] ++ optionals (config.turris.board == "mox") [ "earlycon=ar3700_uart,0xd0012000" "console=ttyMV0,115200" "pcie_aspm=off" # Fix for crashes due to SError Interrupt on ath10k load - ] ++ optional (config.turris.board == "omnia") [ + ] ++ optionals (config.turris.board == "omnia") [ "earlyprintk" "console=ttyS0,115200" ]; |