From 91020c007291c6c888b7821b4d3c67a70575a0d2 Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Fri, 24 Oct 2025 12:26:05 +0200 Subject: [PATCH] trying out other dms --- system-modules/dm.nix | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/system-modules/dm.nix b/system-modules/dm.nix index a9be520..13aff1d 100644 --- a/system-modules/dm.nix +++ b/system-modules/dm.nix @@ -3,22 +3,29 @@ enable = true; settings = rec { hyprland = { - # command = "/home/nx2/test/sysc-greet-1.0.0/cmd/sysc-greet/sysc-greet --theme monochrome"; command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --remember --cmd Hyprland --remember-user-session --window-padding 5"; user = hyper.user; }; default_session = hyprland; vt = 2; }; + # useTextGreeter = true; }; - 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; - }; + # services.displayManager.ly = { + # enable = true; + # package = pkgs.ly; + # settings = { + # # animation = "matrix"; + # # clear_password = true; + # clock = "%c"; + # lang = "de"; + # load = true; + # # numlock = false; + # save = true; + # }; + # }; + + # environment.systemPackages = with pkgs; [ + # cmatrix + # ]; }