Skip to content

Commit

Permalink
fix(nixos): greetd & systemd issue
Browse files Browse the repository at this point in the history
  • Loading branch information
skyuplam committed Jan 13, 2024
1 parent 994b286 commit d880c1c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions machines/linux-shared.nix
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,18 @@
};
};

# Fix Systemd message & tuigreet issue https://github.com/apognu/tuigreet/issues/68
systemd.services.greetd.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;
};

# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. It‘s perfectly fine and recommended to leave
Expand Down

0 comments on commit d880c1c

Please sign in to comment.