Compare commits

..

No commits in common. "fef22d02b8607299bcc2c5ceb3c50ccb3283318f" and "974b3c62cc3576c7aa229ba52f6042f5bc39ba2b" have entirely different histories.

View file

@ -18,14 +18,8 @@ with lib; {
tuigreetCommand = mkOption {
type = types.str;
default = "${pkgs.niri}/bin/niri";
description = "Command to execute after login via tuigreet (default: niri)";
};
tuigreetTheme = mkOption {
type = types.str;
default = "border=magenta;text=cyan;prompt=green;time=red;action=blue;button=yellow;container=black;input=red";
description = "Custom theme string for tuigreet (see tuigreet README for options)";
default = "${pkgs.zsh}/bin/zsh";
description = "Command to execute after login via tuigreet";
};
};
@ -35,7 +29,7 @@ with lib; {
enable = true;
settings = {
default_session = {
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --remember --theme '${config.services.seatd-clean.tuigreetTheme}' --cmd ${config.services.seatd-clean.tuigreetCommand}";
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd ${config.services.seatd-clean.tuigreetCommand}";
user = "greeter";
};
};