Merge pull request #128146 from flokli/backport-add-missing-keep-baud

nixos/getty: add missing --keep-baud
This commit is contained in:
Florian Klink 2021-06-26 12:47:21 +02:00 committed by GitHub
commit 9b0b85c868
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ in
let speeds = concatStringsSep "," (map toString config.services.getty.serialSpeed); in
{ serviceConfig.ExecStart = [
"" # override upstream default with an empty ExecStart
(gettyCmd "%I ${speeds} $TERM")
(gettyCmd "%I --keep-baud ${speeds} $TERM")
];
restartIfChanged = false;
};