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

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;
};