Files
dotfiles/system-modules/dm.nix
Lennart J. Kurzweg (Nx2) 1b7fe7f7ca random changes
2025-10-17 12:44:51 +02:00

25 lines
764 B
Nix

{ pkgs, ... }@all: with all; {
services.greetd = {
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;
};
};
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;
};
}