From 9ca32a16d6ab066aef3e72b9ac7f7e4fc1201705 Mon Sep 17 00:00:00 2001 From: OCbwoy3 Date: Wed, 4 Jun 2025 12:53:00 +0300 Subject: [PATCH] kill getty --- config/qt5ct/qt5ct.conf | 2 +- modules/nixos/hardware.nix | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/config/qt5ct/qt5ct.conf b/config/qt5ct/qt5ct.conf index 0470849..120e2a4 100644 --- a/config/qt5ct/qt5ct.conf +++ b/config/qt5ct/qt5ct.conf @@ -25,7 +25,7 @@ underline_shortcut=1 wheel_scroll_lines=3 [SettingsWindow] -geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\0\0\0\0\0\0\0\x4\x1f\0\0\x2\xfb\0\0\0\0\0\0\0\0\0\0\x3\xbf\0\0\x4\x18\0\0\0\0\x2\0\0\0\a\x80\0\0\0\0\0\0\0\0\0\0\x4\x1f\0\0\x2\xfb) +geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\0\0\0\0\0\0\0\aS\0\0\x3\xec\0\0\0\0\0\0\0\0\0\0\a\x7f\0\0\x4\x37\0\0\0\0\x2\0\0\0\a\x80\0\0\0\0\0\0\0\0\0\0\aS\0\0\x3\xec) [Troubleshooting] force_raster_widgets=1 diff --git a/modules/nixos/hardware.nix b/modules/nixos/hardware.nix index b2711c6..13c2147 100644 --- a/modules/nixos/hardware.nix +++ b/modules/nixos/hardware.nix @@ -37,6 +37,14 @@ }; }; + services.getty.enable = false; + systemd.services."getty@tty1".enable = false; + systemd.services."getty@tty2".enable = false; + systemd.services."getty@tty3".enable = false; + systemd.services."getty@tty4".enable = false; + systemd.services."getty@tty5".enable = false; + systemd.services."getty@tty6".enable = false; + system.stateVersion = "24.11"; }