Regenerated

This commit is contained in:
2026-03-24 12:20:12 +00:00
parent c83075fa75
commit aa87556d3a
23 changed files with 9 additions and 823 deletions
@@ -1,30 +0,0 @@
{ lib, config, pkgs, ... }:
let
username = config.defaultUser or "henrov";
tuigreetPath = "${pkgs.tuigreet}/bin/tuigreet";
hyprlandSess = "${pkgs.hyprland}/share/wayland-sessions";
in
{
services.greetd = {
enable = true;
settings = {
default_session = {
user = "greeter";
command = "${tuigreetPath} --time --remember --remember-session --sessions ${hyprlandSess}";
};
};
};
# Improve systemd service behavior for greetd
systemd.services.greetd.serviceConfig = {
Type = "idle";
StandardInput = "tty";
StandardOutput = "tty";
StandardError = "journal"; # avoids spamming the screen with errors
TTYReset = true;
TTYVHangup = true;
TTYVTDisallocate = true;
};
}