Merge pull request #128079 from flokli/serial-getty-keep-baud
nixos/getty: add missing --keep-baud
This commit is contained in:
commit
9de5cbca45
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ in
|
||||||
let speeds = concatStringsSep "," (map toString config.services.getty.serialSpeed); in
|
let speeds = concatStringsSep "," (map toString config.services.getty.serialSpeed); in
|
||||||
{ serviceConfig.ExecStart = [
|
{ serviceConfig.ExecStart = [
|
||||||
"" # override upstream default with an empty ExecStart
|
"" # override upstream default with an empty ExecStart
|
||||||
(gettyCmd "%I ${speeds} $TERM")
|
(gettyCmd "%I --keep-baud ${speeds} $TERM")
|
||||||
];
|
];
|
||||||
restartIfChanged = false;
|
restartIfChanged = false;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue