From 363bff8c40d7e32776575326768eccb615fe9ade Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Thu, 20 Nov 2025 16:34:47 -0500 Subject: [PATCH] fix: disable serial-getty keeps spamming dmesg with stupid messages. --- configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configuration.nix b/configuration.nix index 426bc42..6964446 100644 --- a/configuration.nix +++ b/configuration.nix @@ -54,6 +54,9 @@ hybrid-sleep.enable = false; }; + # Disable serial getty on ttyS0 to prevent dmesg warnings + systemd.services."serial-getty@ttyS0".enable = false; + # srvos enables vim, i don't want to use vim, disable it here: programs.vim = { defaultEditor = false;