raspberry-2: remove console.extraTTYs

This option is no longer needed. Also remove boot.extraTTYs since
NixOS is older than 20.03 is no longer supported.
This commit is contained in:
Jörg Thalheim 2021-01-06 07:42:50 +01:00
parent c242378e63
commit fd89332b4a
No known key found for this signature in database
GPG Key ID: 003F2096411B5F92
1 changed files with 0 additions and 6 deletions

View File

@ -1,8 +1,5 @@
{ lib, pkgs, ...}:
let
hasConsoleExtraTTYs = lib.versionAtLeast (lib.versions.majorMinor lib.version) "21.03";
in
{
boot = {
consoleLogLevel = lib.mkDefault 7;
@ -21,11 +18,8 @@ in
version = lib.mkDefault 2;
};
};
extraTTYs = lib.mkIf (!hasConsoleExtraTTYs) [ "ttyAMA0" ];
};
console.extraTTYs = lib.mkIf hasConsoleExtraTTYs [ "ttyAMA0" ];
nix.buildCores = 4;
nixpkgs.config.platform = lib.systems.platforms.raspberrypi2;