fix(bbsteamie): disable kmscon and hide getty on tty1
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2025-03-17 16:43:47 -04:00
parent 0a7144e0f0
commit 7f85e39044
2 changed files with 3 additions and 3 deletions

View file

@ -12,7 +12,6 @@
./modules
self.nixosModules.base
self.nixosModules.kmscon
self.nixosModules.meta
self.nixosModules.plymouth
self.nixosModules.server
@ -66,8 +65,6 @@
theme = "bgrt";
};
services.kmscon.enable = true;
home-manager.users.${mainUser} = {
imports = [
self.homeManagerModules.shell

View file

@ -55,6 +55,9 @@ defaultSession: {
'';
};
# Disable getty on tty1 for seamless DE transitions
systemd.services.display-manager.conflicts = ["getty@tty1.service"];
# Allows switching to gaming mode
systemd.services."to-gaming-mode" = {
wantedBy = mkForce [];