Regenerated

This commit is contained in:
2026-04-22 22:45:30 +02:00
parent 7e56a4bca6
commit f7b10fde04
3 changed files with 383 additions and 404 deletions
+381 -388
View File
File diff suppressed because it is too large Load Diff
+1 -8
View File
@@ -1837,19 +1837,16 @@ This sets the dbus implementation
This sets up tuigreeter which is not fancy but imo fits the aesthetic I am aiming for This sets up tuigreeter which is not fancy but imo fits the aesthetic I am aiming for
#+BEGIN_SRC nix :tangle generated/modules/traveldroid/system/login-tuigreet.nix :noweb yes :mkdirp yes :eval never #+BEGIN_SRC nix :tangle generated/modules/traveldroid/system/login-tuigreet.nix :noweb yes :mkdirp yes :eval never
{ config, pkgs, lib, ... }: { config, pkgs, lib, ... }:
let let
tuigreetBin = "${pkgs.tuigreet}/bin/tuigreet"; tuigreetBin = "${pkgs.tuigreet}/bin/tuigreet";
sessionsDir = "${pkgs.hyprland}/share/wayland-sessions"; sessionsDir = "${pkgs.uwsm}/share/wayland-sessions";
in in
{ {
################################# #################################
# Greetd (tuigreet) # Greetd (tuigreet)
################################# #################################
services.greetd = { services.greetd = {
enable = true; enable = true;
settings = { settings = {
default_session = { default_session = {
command = '' command = ''
@@ -1864,18 +1861,14 @@ in
}; };
}; };
}; };
################################# #################################
# Fix TTY / boot noise issues # Fix TTY / boot noise issues
################################# #################################
systemd.services.greetd.serviceConfig = { systemd.services.greetd.serviceConfig = {
Type = "idle"; Type = "idle";
StandardInput = "tty"; StandardInput = "tty";
StandardOutput = "tty"; StandardOutput = "tty";
StandardError = "journal"; StandardError = "journal";
# Prevent boot log spam on tty
TTYReset = true; TTYReset = true;
TTYVHangup = true; TTYVHangup = true;
TTYVTDisallocate = true; TTYVTDisallocate = true;
@@ -1,18 +1,15 @@
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. --- # --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
{ config, pkgs, lib, ... }: { config, pkgs, lib, ... }:
let let
tuigreetBin = "${pkgs.tuigreet}/bin/tuigreet"; tuigreetBin = "${pkgs.tuigreet}/bin/tuigreet";
sessionsDir = "${pkgs.hyprland}/share/wayland-sessions"; sessionsDir = "${pkgs.uwsm}/share/wayland-sessions";
in in
{ {
################################# #################################
# Greetd (tuigreet) # Greetd (tuigreet)
################################# #################################
services.greetd = { services.greetd = {
enable = true; enable = true;
settings = { settings = {
default_session = { default_session = {
command = '' command = ''
@@ -27,18 +24,14 @@ in
}; };
}; };
}; };
################################# #################################
# Fix TTY / boot noise issues # Fix TTY / boot noise issues
################################# #################################
systemd.services.greetd.serviceConfig = { systemd.services.greetd.serviceConfig = {
Type = "idle"; Type = "idle";
StandardInput = "tty"; StandardInput = "tty";
StandardOutput = "tty"; StandardOutput = "tty";
StandardError = "journal"; StandardError = "journal";
# Prevent boot log spam on tty
TTYReset = true; TTYReset = true;
TTYVHangup = true; TTYVHangup = true;
TTYVTDisallocate = true; TTYVTDisallocate = true;