nix: enable autologin and replace regreet with tuigreet

This commit is contained in:
Nico 2025-05-03 16:15:59 +10:00
parent cf6bccd5be
commit 4093f5227c

View file

@ -2,11 +2,15 @@
{ {
# display manager # display manager
programs.regreet = { services.greetd = {
enable = true; enable = true;
settings = { settings = {
GTK = { initial_session = {
application_prefer_dark_theme = true; command = "uwsm start default";
user = "nico";
};
default_session = {
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --greet-align left";
}; };
}; };
}; };