summary refs log tree commit diff
path: root/nixos/modules/services/ttys
diff options
context:
space:
mode:
authorAlexander Ried <ried@mytum.de>2016-06-09 15:41:56 +0200
committerAlexander Ried <ried@mytum.de>2016-09-05 15:03:35 +0200
commit322c8231931a3158b4abc836090bdfa1ce92f5f2 (patch)
tree33b52bb667dca99f43ef8419777c3ab076e5a3f4 /nixos/modules/services/ttys
parent2fd6b36c51babbf72cd459cef3a5b76914065eec (diff)
downloadnixlib-322c8231931a3158b4abc836090bdfa1ce92f5f2.tar
nixlib-322c8231931a3158b4abc836090bdfa1ce92f5f2.tar.gz
nixlib-322c8231931a3158b4abc836090bdfa1ce92f5f2.tar.bz2
nixlib-322c8231931a3158b4abc836090bdfa1ce92f5f2.tar.lz
nixlib-322c8231931a3158b4abc836090bdfa1ce92f5f2.tar.xz
nixlib-322c8231931a3158b4abc836090bdfa1ce92f5f2.tar.zst
nixlib-322c8231931a3158b4abc836090bdfa1ce92f5f2.zip
agetty: remove override for container-getty@.service since it's upstream
Added in systemd/systemd@68ac53e
Diffstat (limited to 'nixos/modules/services/ttys')
-rw-r--r--nixos/modules/services/ttys/agetty.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/nixos/modules/services/ttys/agetty.nix b/nixos/modules/services/ttys/agetty.nix
index ea7196fc8733..051d54e932fb 100644
--- a/nixos/modules/services/ttys/agetty.nix
+++ b/nixos/modules/services/ttys/agetty.nix
@@ -80,8 +80,7 @@ in
       };
 
     systemd.services."container-getty@" =
-      { unitConfig.ConditionPathExists = "/dev/pts/%I"; # Work around being respawned when "machinectl login" exits.
-        serviceConfig.ExecStart = gettyCmd "--noclear --keep-baud pts/%I 115200,38400,9600 $TERM";
+      { serviceConfig.ExecStart = gettyCmd "--noclear --keep-baud pts/%I 115200,38400,9600 $TERM";
         restartIfChanged = false;
       };