Regenerated

This commit is contained in:
2026-03-24 17:45:51 +00:00
parent 70e5af8d15
commit e02f2cf5c4
24 changed files with 8 additions and 824 deletions
@@ -1,39 +0,0 @@
{ config, pkgs, lib, ... }:
let
tuigreetBin = "${pkgs.tuigreet}/bin/tuigreet";
sessionsDir = "${pkgs.hyprland}/share/wayland-sessions";
in
{
#################################
# Greetd (tuigreet)
#################################
services.greetd = {
enable = true;
settings = {
default_session = {
command =
"${tuigreetBin} --time --remember --remember-session --sessions ${sessionsDir}";
user = "greeter";
};
};
};
#################################
# Fix TTY / boot noise issues
#################################
systemd.services.greetd.serviceConfig = {
Type = "idle";
StandardInput = "tty";
StandardOutput = "tty";
StandardError = "journal";
# Prevent boot log spam on tty
TTYReset = true;
TTYVHangup = true;
TTYVTDisallocate = true;
};
}