fix(bbsteamie): disable kmscon and hide getty on tty1
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
0a7144e0f0
commit
7f85e39044
2 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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 [];
|
||||
|
|
Loading…
Add table
Reference in a new issue