Skip to content

Commit

Permalink
greetd: prevent tuigreet from getting spammed from kernel messages
Browse files Browse the repository at this point in the history
  • Loading branch information
zachcoyle committed Sep 12, 2024
1 parent 084090d commit 0899a15
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions hosts/nixos/common-configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,17 @@ in
user = "greeter";
};
};
# INFO: https://github.com/apognu/tuigreet/issues/68#issuecomment-1586359960
serviceConfig = {
Type = "idle";
StandardInput = "tty";
StandardOutput = "tty";
StandardError = "journal"; # Without this errors will spam on screen
# Without these bootlogs will spam on screen
TTYReset = true;
TTYVHangup = true;
TTYVTDisallocate = true;
};
};

libinput = {
Expand Down

0 comments on commit 0899a15

Please sign in to comment.