improve hyprland

This commit is contained in:
2025-08-20 12:08:37 +02:00
parent d0a1a4204d
commit 9ce4223019
37 changed files with 507 additions and 14 deletions

View File

@@ -0,0 +1,18 @@
{
config,
username,
pkgs,
...
}:
let
cfg = config.services.getty;
in
{
systemd.services."getty@tty1" = {
overrideStrategy = "asDropin";
serviceConfig.ExecStart = [
""
"${pkgs.util-linux}/bin/agetty --login-program ${cfg.loginProgram} --autologin ${username} --noclear --keep-baud %I 115200,38400,9600 $TERM"
];
};
}